Lua: adjust initial savestate object size

This commit is contained in:
gocha 2012-08-09 07:16:54 +09:00
parent 719eee2cd9
commit be43e26824
1 changed files with 1 additions and 1 deletions

View File

@ -1988,7 +1988,7 @@ DEFINE_LUA_FUNCTION(state_create, "[location]")
}
StateData& stateData = **ppStateData;
stateData.size = 0x40;
stateData.size = 0x200000;
stateData.buffer = (uint8 *)malloc(stateData.size);
if (stateData.buffer == NULL)
{