fix shift-0 hold notes

These #ifdef Xbox-specific hacks need to go.  Making the entire editor
code unreadable and hard to maintain is just not acceptable.
This commit is contained in:
Glenn Maynard
2005-01-10 00:52:04 +00:00
parent a5a48483a0
commit 8d40bee10c
+2 -1
View File
@@ -964,7 +964,8 @@ void ScreenEdit::InputEdit( const DeviceInput& DeviceI, const InputEventType typ
continue; // skip continue; // skip
#if !defined(XBOX) #if !defined(XBOX)
const DeviceInput di(DEVICE_KEYBOARD, KEY_C1+n); int b = n < 9? KEY_C1+n: KEY_C0;
const DeviceInput di(DEVICE_KEYBOARD, b);
if( !INPUTFILTER->IsBeingPressed(di) ) if( !INPUTFILTER->IsBeingPressed(di) )
#else #else