diff options
author | bunnei <bunneidev@gmail.com> | 2015-02-20 11:41:30 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-02-20 11:41:30 -0500 |
commit | 5f9939070e81691e04facca9ff431070988e5b05 (patch) | |
tree | 9bd54cdde2c34dd2f63e0396260335f267a46ce1 /src/common/chunk_file.h | |
parent | c7d1480ece78126801e308fd9a9a9a1664e34428 (diff) | |
parent | 4fb75d220aeaa66d3e907cc2311acf6c29433800 (diff) |
Merge pull request #588 from archshift/somebranch
Sweeping cleanup of Common
Diffstat (limited to 'src/common/chunk_file.h')
-rw-r--r-- | src/common/chunk_file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/chunk_file.h b/src/common/chunk_file.h index dc27da088..3f97d56bf 100644 --- a/src/common/chunk_file.h +++ b/src/common/chunk_file.h @@ -637,7 +637,7 @@ public: Do(cookie); if(mode == PointerWrap::MODE_READ && cookie != arbitraryNumber) { - PanicAlertT("Error: After \"%s\", found %d (0x%X) instead of save marker %d (0x%X). Aborting savestate load...", prevName, cookie, cookie, arbitraryNumber, arbitraryNumber); + LOG_ERROR(Common, "After \"%s\", found %d (0x%X) instead of save marker %d (0x%X). Aborting savestate load...", prevName, cookie, cookie, arbitraryNumber, arbitraryNumber); SetError(ERROR_FAILURE); } } |