From 4f9b2404b68bfac69c63596f0cc9a1e472622f0f Mon Sep 17 00:00:00 2001 From: Christophe Teyssier Date: Sat, 8 Mar 2008 15:39:33 +0000 Subject: [PATCH] Back-ported r4088 from trunk: Fixed faster/slower options in Windows time menu to adjust time by 10x instead of 2x factor. --- src/celestia/winmain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/celestia/winmain.cpp b/src/celestia/winmain.cpp index 60ed5ad36..aab55d722 100644 --- a/src/celestia/winmain.cpp +++ b/src/celestia/winmain.cpp @@ -4117,10 +4117,10 @@ LRESULT CALLBACK MainWindowProc(HWND hWnd, #endif case ID_TIME_FASTER: - appCore->charEntered('L'); + appCore->charEntered('l'); break; case ID_TIME_SLOWER: - appCore->charEntered('K'); + appCore->charEntered('k'); break; case ID_TIME_REALTIME: appCore->charEntered('\\');