diff --git a/stepmania/src/archutils/Win32/Crash.cpp b/stepmania/src/archutils/Win32/Crash.cpp index 3a08ca1896..fd01275e59 100644 --- a/stepmania/src/archutils/Win32/Crash.cpp +++ b/stepmania/src/archutils/Win32/Crash.cpp @@ -714,7 +714,7 @@ void SymLookup( const void *ptr, char *buf ) char tmp[512]; if( VDDebugInfoLookupRVA(&g_debugInfo, (unsigned int)ptr, tmp, sizeof(tmp)) >= 0 ) { - wsprintf( buf, "%08p: %s", ptr, Demangle(tmp) ); + wsprintf( buf, "%08x: %s", ptr, Demangle(tmp) ); return; }