From c24a9c1631b7191126324d0935dce33c66bd9538 Mon Sep 17 00:00:00 2001 From: Emux Date: Wed, 21 Dec 2022 16:10:15 +0200 Subject: [PATCH] InputHandler: update themes, #995 (#996) --- vtm-gdx/src/org/oscim/gdx/InputHandler.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/vtm-gdx/src/org/oscim/gdx/InputHandler.java b/vtm-gdx/src/org/oscim/gdx/InputHandler.java index 9eab5620..a1ddeaf5 100644 --- a/vtm-gdx/src/org/oscim/gdx/InputHandler.java +++ b/vtm-gdx/src/org/oscim/gdx/InputHandler.java @@ -126,16 +126,21 @@ public class InputHandler implements InputProcessor { break; case Input.Keys.NUM_3: - mMap.setTheme(VtmThemes.OSMAGRAY); + mMap.setTheme(VtmThemes.BIKER); mMap.updateMap(false); break; case Input.Keys.NUM_4: - mMap.setTheme(VtmThemes.TRONRENDER); + mMap.setTheme(VtmThemes.OSMAGRAY); mMap.updateMap(false); break; case Input.Keys.NUM_5: + mMap.setTheme(VtmThemes.TRONRENDER); + mMap.updateMap(false); + break; + + case Input.Keys.NUM_6: mMap.setTheme(VtmThemes.NEWTRON); mMap.updateMap(false); break;