diff options
author | huderlem <huderlem@gmail.com> | 2019-03-03 09:28:35 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-03 09:28:35 -0600 |
commit | c9d2fcabefb149f259f97b59e15b4d635c52d2c6 (patch) | |
tree | 3122377a548140355ae1a3350212cc52827bc9ac /src/mail.c | |
parent | 043071ae12aa6854119a44304a5facbd58fa3624 (diff) | |
parent | 9372731c3ef1ac5f7ed59a85b071bde7b87d2460 (diff) |
Merge pull request #553 from Phlosioneer/main-menu-state-machine
Document main_menu state machine, name window constants
Diffstat (limited to 'src/mail.c')
-rw-r--r-- | src/mail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mail.c b/src/mail.c index aa4ba571f..9cca4492e 100644 --- a/src/mail.c +++ b/src/mail.c @@ -477,8 +477,8 @@ static void sub_8121B1C(void) y = 0; PutWindowTilemap(0); PutWindowTilemap(1); - FillWindowPixelBuffer(0, 0); - FillWindowPixelBuffer(1, 0); + FillWindowPixelBuffer(0, PIXEL_FILL(0)); + FillWindowPixelBuffer(1, PIXEL_FILL(0)); for (i = 0; i < sMailRead->layout->numSubStructs; i ++) { if (sMailRead->strbuf[i][0] == EOS || sMailRead->strbuf[i][0] == CHAR_SPACE) |