summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/control/Record.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/control/Record.cpp b/src/control/Record.cpp
index e858bc1d..aead1720 100644
--- a/src/control/Record.cpp
+++ b/src/control/Record.cpp
@@ -40,7 +40,7 @@ void CRecordDataForGame::Init(void)
RecordingState = STATE_PLAYBACK;
}
if (RecordingState == STATE_PLAYBACK) {
- pDataBufferPointer = (uint8*)malloc(MEMORY_FOR_GAME_RECORD);
+ pDataBufferPointer = new uint8[MEMORY_FOR_GAME_RECORD];
pDataBuffer = pDataBufferPointer;
pDataBuffer[CFileMgr::Read(FId, (char*)pDataBufferPointer, MEMORY_FOR_GAME_RECORD) + 8] = -1;
CFileMgr::CloseFile(FId);