diff options
author | Nebuleon Fumika | 2013-03-23 01:20:08 -0400 |
---|---|---|
committer | Nebuleon Fumika | 2013-03-23 01:20:08 -0400 |
commit | 362058dc00e076ce236bff5ed37662c7ded2e900 (patch) | |
tree | b1ab712038e742f5132194d9ed0e6567ab152da8 | |
parent | 24b55e1c027adcda70d81daf6ec1bc2ac502556e (diff) | |
download | snes9x2005-362058dc00e076ce236bff5ed37662c7ded2e900.tar.gz snes9x2005-362058dc00e076ce236bff5ed37662c7ded2e900.tar.bz2 snes9x2005-362058dc00e076ce236bff5ed37662c7ded2e900.zip |
Allocate fewer screens for the console shown when a basic initialisation error occurs.
-rw-r--r-- | source/nds/draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/nds/draw.c b/source/nds/draw.c index aa56f20..8693141 100644 --- a/source/nds/draw.c +++ b/source/nds/draw.c @@ -1183,7 +1183,7 @@ void show_log(void* screen_addr) void err_msg(enum SCREEN_ID screen, char *msg) { // A wild console appeared! - ConsoleInit(RGB15(31, 31, 31), RGB15(0, 0, 0), UP_SCREEN, 512); + ConsoleInit(RGB15(31, 31, 31), RGB15(0, 0, 0), UP_SCREEN, 2); printf(msg); } |