Small fix

This commit is contained in:
Federico Cecchetto 2022-01-31 22:47:30 +01:00
parent 2c08102eba
commit 9fbd1695df
2 changed files with 2 additions and 2 deletions

View File

@ -378,7 +378,7 @@ namespace game_console
void print(const int type, const char* fmt, ...)
{
char va_buffer[0x200] = { 0 };
char va_buffer[2048] = {0};
va_list ap;
va_start(ap, fmt);

View File

@ -60,7 +60,7 @@ namespace ui_scripting
void hksi_lual_error_stub(game::hks::lua_State* s, const char* fmt, ...)
{
char va_buffer[0x200] = { 0 };
char va_buffer[2048] = {0};
va_list ap;
va_start(ap, fmt);