more of the same

This commit is contained in:
Glenn Maynard
2002-09-07 10:43:16 +00:00
parent 6460b7ae88
commit 1f112d3c25
3 changed files with 13 additions and 15 deletions
+2 -2
View File
@@ -812,7 +812,7 @@ void ScreenGameplay::Input( const DeviceInput& DeviceI, const InputEventType typ
{
case DIK_F9: fOffsetDelta = -0.025f; break;
case DIK_F10: fOffsetDelta = +0.025f; break;
default: ASSERT(0);
default: ASSERT(0); return;
}
if( type == IET_FAST_REPEAT )
fOffsetDelta *= 10;
@@ -838,7 +838,7 @@ void ScreenGameplay::Input( const DeviceInput& DeviceI, const InputEventType typ
{
case DIK_F11: fOffsetDelta = -0.02f; break;
case DIK_F12: fOffsetDelta = +0.02f; break;
default: ASSERT(0);
default: ASSERT(0); return;
}
if( type == IET_FAST_REPEAT )
fOffsetDelta *= 10;