Skip to content

Commit

Permalink
Fix this annoying warning in ChunkFile.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Sonicadvance1 committed Dec 28, 2012
1 parent 94116bf commit 225d29f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Common/Src/ChunkFile.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class PointerWrap
case MODE_READ: x = (wchar_t*)*ptr; break;
case MODE_WRITE: memcpy(*ptr, x.c_str(), stringLen); break;
case MODE_MEASURE: break;
case MODE_VERIFY: _dbg_assert_msg_(COMMON, x == (wchar_t*)*ptr, "Savestate verification failure: \"%s\" != \"%s\" (at %p).\n", x.c_str(), (wchar_t*)*ptr, ptr); break;
case MODE_VERIFY: _dbg_assert_msg_(COMMON, x == (wchar_t*)*ptr, "Savestate verification failure: \"%ls\" != \"%ls\" (at %p).\n", x.c_str(), (wchar_t*)*ptr, ptr); break;
}
(*ptr) += stringLen;
}
Expand Down

0 comments on commit 225d29f

Please sign in to comment.