From 7fedce40116c434c6d0a529953e1408b74946cf8 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 24 Oct 2002 07:05:15 +0000 Subject: [PATCH] quiet warnings --- stepmania/src/Crash.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/Crash.cpp b/stepmania/src/Crash.cpp index 608586a81b..f18c6052c6 100644 --- a/stepmania/src/Crash.cpp +++ b/stepmania/src/Crash.cpp @@ -487,7 +487,7 @@ static void ReportThreadStacks(HWND hwnd, HANDLE hFile, const EXCEPTION_POINTERS } static void ReportCrashData(HWND hwnd, HANDLE hFile, const EXCEPTION_POINTERS *const pExc) { - const EXCEPTION_RECORD *const pRecord = (const EXCEPTION_RECORD *)pExc->ExceptionRecord; +// const EXCEPTION_RECORD *const pRecord = (const EXCEPTION_RECORD *)pExc->ExceptionRecord; const CONTEXT *const pContext = (const CONTEXT *)pExc->ContextRecord; int i, tos; @@ -1039,7 +1039,7 @@ bool VDDebugInfoInitFromMemory(VDDebugInfoContext *pctx, const void *_src) { // Check version number - int write_version = (src[1]-'0')*10 + (src[2] - '0'); +// int write_version = (src[1]-'0')*10 + (src[2] - '0'); int compat_version = (src[4]-'0')*10 + (src[5] - '0'); if (compat_version > 1)