Skip to content

Commit 91388c7

Browse files
committed
bmjr: Display colors regardless of the value of
2 parents a2c3599 + 70e94c7 commit 91388c7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/vm/bmjr/memory.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)