Changed the hotkeys to 1 and 2. Message in GUI changed to reflect this.

This commit is contained in:
i418c
2014-11-16 10:39:54 -08:00
parent 5394967e03
commit 92d4e38267
2 changed files with 3 additions and 3 deletions

View File

@ -1150,10 +1150,10 @@ void CFrame::OnKeyDown(wxKeyEvent& event)
static float debugSpeed = 1.0f;
switch (event.GetKeyCode())
{
case '(':
case '1':
debugSpeed /= 2.0f;
break;
case ')':
case '2':
debugSpeed *= 2.0f;
break;
case 'W':