Added missing "int" in two cases, wanted by VC++ 2005.
This commit is contained in:
parent
1f6a50146e
commit
8c606ab4e8
2 changed files with 3 additions and 3 deletions
|
@ -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();
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue