1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-30 22:29:56 +00:00

Remove extraneous brackets, add comment to self.

This commit is contained in:
Thomas Harte 2023-01-23 22:25:56 -05:00
parent 8567c934b1
commit 7293f9dc10
2 changed files with 2 additions and 2 deletions

View File

@ -301,7 +301,7 @@ void TMS9918<personality>::run_for(const HalfCycles cycles) {
}
const bool is_refresh =
(this->screen_mode_ == ScreenMode::Blank) ||
this->screen_mode_ == ScreenMode::Blank ||
this->is_vertical_blank();
// TODO: an actual sprites-enabled flag.

View File

@ -86,7 +86,7 @@ struct LineBuffer {
// this struct captures maximal potential detail there.
struct {
struct {
size_t offset = 0;
size_t offset = 0; // TODO: could presumably be much smaller. One byte maybe?
uint8_t flags = 0;
} names[40];