1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Refer to actual field.

This commit is contained in:
Thomas Harte 2023-01-29 18:02:09 -05:00
parent 4cdcd3ac7d
commit a91a5b8d07
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ struct Target: public ::Analyser::Static::Target, public Reflection::StructImpl<
MSX1,
MSX2
);
Model model = Model::MSX1;
Model model = Model::MSX2;
ReflectableEnum(Region,
Japan,

View File

@ -911,7 +911,7 @@ void Base<personality>::commit_register(int reg, uint8_t value) {
}
#undef Begin
Storage<personality>::pixel_operation = CommandContext::LogicalOperation(value & 0xf);
Storage<personality>::command_context_.pixel_operation = CommandContext::LogicalOperation(value & 0xf);
// Kill the command immediately if it's done in zero operations
// (e.g. a line of length 0).