Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix debug build
  • Loading branch information
degasus committed Mar 6, 2013
1 parent 427a26f commit eaa5a77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Common/Src/ChunkFile.h
Expand Up @@ -246,9 +246,9 @@ class PointerWrap
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:
Expand Down

0 comments on commit eaa5a77

Please sign in to comment.