diff options
| author | degasus <wickmarkus@web.de> | 2013-03-06 20:47:48 +0100 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2013-03-06 20:47:48 +0100 |
| commit | eaa5a77d9e07b181ffec6ea07b75c64054112a9b (patch) | |
| tree | 2d580937cf3b006a9d1271d4844bb407644b5325 /Source/Core/Common | |
| parent | 427a26fcc2709e49417278e942f60f97ba329284 (diff) | |
fix debug build
Diffstat (limited to 'Source/Core/Common')
| -rw-r--r-- | Source/Core/Common/Src/ChunkFile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/Src/ChunkFile.h b/Source/Core/Common/Src/ChunkFile.h index 3c0a58f678..da468b9910 100644 --- a/Source/Core/Common/Src/ChunkFile.h +++ b/Source/Core/Common/Src/ChunkFile.h @@ -246,9 +246,9 @@ private: break; case MODE_VERIFY: - _dbg_assert_msg_(COMMON, (x == *ptr), + _dbg_assert_msg_(COMMON, (x == **ptr), "Savestate verification failure: %d (0x%X) (at %p) != %d (0x%X) (at %p).\n", - x, x, &x, *ptr, *ptr, &*ptr); + x, x, &x, **ptr, **ptr, *ptr); break; default: |
