Skip to content

Commit

Permalink
Save state fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LillyJadeKatrin committed Feb 16, 2024
1 parent 4888866 commit e5d32f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/RADevToolManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ void RADevToolManager::DoState(PointerWrap& p)
char* buffer = (char*)malloc(size);
if (!p.IsReadMode())
RA_CaptureState(buffer, size);
p.Do(buffer);
p.DoArray(buffer, size);
if (p.IsReadMode())
RA_RestoreState(buffer);
}
Expand Down

0 comments on commit e5d32f2

Please sign in to comment.