Changeset 5e2fc8b in buchla-emu


Ignore:
Timestamp:
05/27/2018 12:56:27 PM (6 years ago)
Author:
alexheinrich <alex.heinrich@…>
Branches:
master
Children:
72b5744
Parents:
25c3737
Message:

Fix ticket #16.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • emu/lcd.c

    r25c3737 r5e2fc8b  
    134134                                line[x] = ' ';
    135135                        }
     136                        else if (line[x] == 0x7e) {
     137                                line[x] = (char) 0xbb;
     138                        }
     139                        else if (line[x] == 0x7f) {
     140                                line[x] = (char) 0xab;
     141                        }
    136142                }
    137143
Note: See TracChangeset for help on using the changeset viewer.