1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-20 10:17:05 +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
+1 -1
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,
+1 -1
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).