(svn r12167) -Feature(tte): change colour of autorail and autoroad selection when Ctrl is pressed

This commit is contained in:
smatz
2008-02-17 17:00:43 +00:00
parent 291931bf50
commit 8b56e7544e
8 changed files with 120 additions and 15 deletions

View File

@@ -490,6 +490,8 @@ void VideoDriver_SDL::MainLoop()
last_cur_ticks = cur_ticks;
next_tick = cur_ticks + 30;
bool old_ctrl_pressed = _ctrl_pressed;
_ctrl_pressed = !!(mod & KMOD_CTRL);
_shift_pressed = !!(mod & KMOD_SHIFT);
@@ -499,6 +501,9 @@ void VideoDriver_SDL::MainLoop()
(keys[SDLK_UP] ? 2 : 0) |
(keys[SDLK_RIGHT] ? 4 : 0) |
(keys[SDLK_DOWN] ? 8 : 0);
if (old_ctrl_pressed != _ctrl_pressed) HandleCtrlChanged();
GameLoop();
_screen.dst_ptr = _sdl_screen->pixels;