minor indentation cleanup

This commit is contained in:
mpohoreski 2006-07-01 06:44:09 +00:00
parent d9f65ad85b
commit dc0c89502e

View File

@ -158,7 +158,8 @@ void KeybQueueKeypress (int key, BOOL bASCII)
if (bASCII == ASCII)
{
if (bFreshReset && key == 0x03) {
if (bFreshReset && key == 0x03)
{
bFreshReset = 0;
return; // Swallow spurious CTRL-C caused by CTRL-BREAK
}
@ -167,16 +168,19 @@ void KeybQueueKeypress (int key, BOOL bASCII)
return;
if (g_bApple2e)
{
if (g_bCapsLock && (key >= 'a') && (key <='z'))
keycode = key - 32;
else
keycode = key;
}
else
{
if (key >= '`')
keycode = key - 32;
else
keycode = key;
}
lastvirtkey = LOBYTE(VkKeyScan(key));
}
else