File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -394,7 +394,7 @@ void MEMORY::draw_screen()
394394
395395 for (int y = 0 , yy = 0 ; y < 24 ; y++, yy += 8 ) {
396396 for (int x = 0 , xx = 0 ; x < 32 ; x++, xx += 8 ) {
397- if (mp1710_enb & 1 ) {
397+ {
398398 uint8_t color = color_table[taddr - 0x100 ];
399399 if (screen_reversed) {
400400 color = (color >> 4 ) | (color << 4 );
@@ -426,7 +426,7 @@ void MEMORY::draw_screen()
426426
427427 for (int y = 0 , yy = 0 ; y < 24 ; y++, yy += 8 ) {
428428 for (int x = 0 , xx = 0 ; x < 32 ; x++, xx += 8 ) {
429- if (mp1710_enb & 1 ) {
429+ {
430430 uint8_t color = color_table[taddr - 0x100 ];
431431 if (screen_reversed) {
432432 color = (color >> 4 ) | (color << 4 );
@@ -461,7 +461,7 @@ void MEMORY::draw_screen()
461461
462462 for (int y = 0 , yy = 0 ; y < 24 ; y++, yy += 8 ) {
463463 for (int x = 0 , xx = 0 ; x < 32 ; x++, xx += 8 ) {
464- if (mp1710_enb & 1 ) {
464+ {
465465 uint8_t color = color_table[taddr - 0x100 ];
466466 if (screen_reversed) {
467467 color = (color >> 4 ) | (color << 4 );
You can’t perform that action at this time.
0 commit comments