Small fix
This commit is contained in:
parent
2c08102eba
commit
9fbd1695df
@ -378,7 +378,7 @@ namespace game_console
|
|||||||
|
|
||||||
void print(const int type, const char* fmt, ...)
|
void print(const int type, const char* fmt, ...)
|
||||||
{
|
{
|
||||||
char va_buffer[0x200] = { 0 };
|
char va_buffer[2048] = {0};
|
||||||
|
|
||||||
va_list ap;
|
va_list ap;
|
||||||
va_start(ap, fmt);
|
va_start(ap, fmt);
|
||||||
|
@ -60,7 +60,7 @@ namespace ui_scripting
|
|||||||
|
|
||||||
void hksi_lual_error_stub(game::hks::lua_State* s, const char* fmt, ...)
|
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_list ap;
|
||||||
va_start(ap, fmt);
|
va_start(ap, fmt);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user