Pressing Shift, Ctrl, or Alt when viewing the current Apple output from the debugger no longer returns back to the debugger.

This commit is contained in:
mpohoreski 2009-02-19 22:46:58 +00:00
parent 7f2ba556f1
commit 592c60ce24

View File

@ -9087,6 +9087,11 @@ void DebuggerProcessKey( int keycode )
if (g_bDebuggerViewingAppleOutput)
{
if ((VK_SHIFT == keycode) || (VK_CONTROL == keycode) || (VK_MENU == keycode))
{
return;
}
// Normally any key press takes us out of "Viewing Apple Output" g_nAppMode
// VK_F# are already processed, so we can't use them to cycle next video g_nAppMode
// if ((g_nAppMode != MODE_LOGO) && (g_nAppMode != MODE_DEBUG))