- Make symdump and ctm msvc-aware

svn path=/trunk/; revision=42367
This commit is contained in:
Stefan Ginsberg 2009-08-03 17:08:45 +00:00
parent c9e1afaeda
commit bab8a60b46
2 changed files with 3 additions and 3 deletions

View file

@ -277,10 +277,11 @@ void DisplayScreen()
int ProcessKeys(int numEvents)
{
DWORD numChars;
TCHAR key;
if ((ProcessCount-scrolled < 17) && (ProcessCount > 17))
scrolled = ProcessCount-17;
TCHAR key = GetKeyPressed(numEvents);
key = GetKeyPressed(numEvents);
if (key == KEY_QUIT)
return TRUE;
else if (key == KEY_KILL)