mirror of https://github.com/OpenTTD/OpenTTD
(svn r3206) Wrap all instances of _dbg_screen_rect in #ifdef _DEBUG
parent
ec57ef78a2
commit
f750a773a4
|
@ -440,7 +440,9 @@ static void SdlVideoMainLoop(void)
|
||||||
|
|
||||||
_ctrl_pressed = !!(mod & (KMOD_LCTRL | KMOD_RCTRL));
|
_ctrl_pressed = !!(mod & (KMOD_LCTRL | KMOD_RCTRL));
|
||||||
_shift_pressed = !!(mod & (KMOD_LSHIFT | KMOD_RSHIFT));
|
_shift_pressed = !!(mod & (KMOD_LSHIFT | KMOD_RSHIFT));
|
||||||
|
#ifdef _DEBUG
|
||||||
_dbg_screen_rect = !!(mod & KMOD_CAPS);
|
_dbg_screen_rect = !!(mod & KMOD_CAPS);
|
||||||
|
#endif
|
||||||
|
|
||||||
// determine which directional keys are down
|
// determine which directional keys are down
|
||||||
_dirkeys =
|
_dirkeys =
|
||||||
|
|
|
@ -734,7 +734,9 @@ static void Win32GdiMainLoop(void)
|
||||||
next_tick += 30;
|
next_tick += 30;
|
||||||
_ctrl_pressed = _wnd.has_focus && GetAsyncKeyState(VK_CONTROL)<0;
|
_ctrl_pressed = _wnd.has_focus && GetAsyncKeyState(VK_CONTROL)<0;
|
||||||
_shift_pressed = _wnd.has_focus && GetAsyncKeyState(VK_SHIFT)<0;
|
_shift_pressed = _wnd.has_focus && GetAsyncKeyState(VK_SHIFT)<0;
|
||||||
|
#ifdef _DEBUG
|
||||||
_dbg_screen_rect = _wnd.has_focus && GetAsyncKeyState(VK_CAPITAL)<0;
|
_dbg_screen_rect = _wnd.has_focus && GetAsyncKeyState(VK_CAPITAL)<0;
|
||||||
|
#endif _DEBUG
|
||||||
|
|
||||||
// determine which directional keys are down
|
// determine which directional keys are down
|
||||||
if (_wnd.has_focus) {
|
if (_wnd.has_focus) {
|
||||||
|
|
Loading…
Reference in New Issue