diff options
author | Dimitri Sokolyuk <demon@dim13.org> | 2012-04-23 21:44:33 +0000 |
---|---|---|
committer | Dimitri Sokolyuk <demon@dim13.org> | 2012-04-23 21:44:33 +0000 |
commit | a11ec50c0155d4011140486ffb5af92812bf11b4 (patch) | |
tree | a5518ffbad67115a4332ee08fb3a17aabdac4937 /gui.c | |
parent | f92bb441463c201e605c737fb1a6203ce7daaf57 (diff) |
sync border color handling with 0x10co.de
Diffstat (limited to 'gui.c')
-rw-r--r-- | gui.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -104,7 +104,7 @@ drawscreen(SDL_Surface *screen, unsigned short *m) { int x, y; - SDL_FillRect(screen, &scr, (m[MISC] >> 8) & 0x0f); + SDL_FillRect(screen, &scr, m[BORDER] & 0x0f); for (x = 0; x < 32; x++) for (y = 0; y < 12; y++) @@ -190,7 +190,7 @@ setfont(unsigned short *m) m[CHARS + 2 * i + 1] = atari_small[i][1]; } - m[MISC] = 0x8000; /* set default fg/bg */ + m[BORDER] = 0; /* set default bg to black */ } void |