Added missing "int" in two cases, wanted by VC++ 2005.

This commit is contained in:
tearex 2006-09-14 20:11:38 +00:00
parent 1f6a50146e
commit 8c606ab4e8
2 changed files with 3 additions and 3 deletions

View File

@ -9210,7 +9210,7 @@ void DebuggerCursorUpdate()
if (g_nAppMode != MODE_DEBUG)
return;
const nUpdatesPerSecond = 4;
const int nUpdatesPerSecond = 4;
const DWORD nHz = 1000 / nUpdatesPerSecond;
static DWORD nBeg = GetTickCount(); // timeGetTime();
DWORD nNow = GetTickCount(); // timeGetTime();

View File

@ -2580,7 +2580,7 @@ void DrawZeroPagePointers ( int line )
DebuggerSetColorBG( DebuggerGetColor( WATCH_ZERO_BG )); // BG_INFO
const nMaxSymbolLen = 7;
const int nMaxSymbolLen = 7;
char sText[nMaxSymbolLen+1] = "";
for(int iZP = 0; iZP < MAX_ZEROPAGE_POINTERS; iZP++)
@ -3132,7 +3132,7 @@ void DrawWindowBackground_Info( int g_iWindowThis )
//===========================================================================
void UpdateDisplay (Update_t bUpdate)
{
static spDrawMutex = false;
static int spDrawMutex = false;
if (spDrawMutex)
{