mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-18 16:04:10 +00:00
fix realloc
This commit is contained in:
parent
2e37001881
commit
264d7d98d7
1 changed files with 1 additions and 1 deletions
|
@ -713,7 +713,7 @@ void CTweakVars::Add(CTweakVar *var)
|
||||||
TweakVarsListSize = 0;
|
TweakVarsListSize = 0;
|
||||||
}
|
}
|
||||||
if(TweakVarsListSize > 63)
|
if(TweakVarsListSize > 63)
|
||||||
TweakVarsList = (CTweakVar**) realloc(TweakVarsList, (TweakVarsListSize + 1) * sizeof(*var));
|
TweakVarsList = (CTweakVar**) realloc(TweakVarsList, (TweakVarsListSize + 1) * sizeof(CTweakVar*));
|
||||||
|
|
||||||
TweakVarsList[TweakVarsListSize++] = var;
|
TweakVarsList[TweakVarsListSize++] = var;
|
||||||
// TweakVarsList.push_back(var);
|
// TweakVarsList.push_back(var);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue