Allocate fewer screens for the console shown when a basic initialisation error occurs.

This commit is contained in:
Nebuleon Fumika 2013-03-23 01:20:08 -04:00
parent 24b55e1c02
commit 362058dc00

View file

@ -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);
}