mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-14 03:09:01 +00:00
Added missing "int" in two cases, wanted by VC++ 2005.
This commit is contained in:
parent
32e0381c0b
commit
f3e37c21e7
@ -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…
Reference in New Issue
Block a user