diff --git a/data/gfx/controllers/controllers.png b/data/gfx/controllers/controllers.png index c469ed1..e8775b5 100644 Binary files a/data/gfx/controllers/controllers.png and b/data/gfx/controllers/controllers.png differ diff --git a/source/on_screen_help.cpp b/source/on_screen_help.cpp index 853fc09..83afb1c 100644 --- a/source/on_screen_help.cpp +++ b/source/on_screen_help.cpp @@ -18,13 +18,13 @@ constexpr int ICONSIZE = 16; constexpr SDL_Point PADDING = {8, 8}; constexpr SDL_Point DESP = {ICONSIZE + 4, 5}; -constexpr SDL_Rect CONTROLLER_UP = {16, 16, ICONSIZE, ICONSIZE}; -constexpr SDL_Rect CONTROLLER_DOWN = {48, 16, ICONSIZE, ICONSIZE}; -constexpr SDL_Rect CONTROLLER_LEFT = {64, 16, ICONSIZE, ICONSIZE}; -constexpr SDL_Rect LEFT_BUTTON = {48, 144, ICONSIZE, ICONSIZE}; -constexpr SDL_Rect TOP_BUTTON = {0, 144, ICONSIZE, ICONSIZE}; -constexpr SDL_Rect RIGHT_BUTTON = {16, 144, ICONSIZE, ICONSIZE}; -constexpr SDL_Rect START_BUTTON = {128, 320, ICONSIZE, ICONSIZE}; +constexpr SDL_Rect CONTROLLER_UP = {16, 0, ICONSIZE, ICONSIZE}; +constexpr SDL_Rect CONTROLLER_DOWN = {48, 0, ICONSIZE, ICONSIZE}; +constexpr SDL_Rect CONTROLLER_LEFT = {64, 0, ICONSIZE, ICONSIZE}; +constexpr SDL_Rect LEFT_BUTTON = {112, 0, ICONSIZE, ICONSIZE}; +constexpr SDL_Rect TOP_BUTTON = {80, 0, ICONSIZE, ICONSIZE}; +constexpr SDL_Rect RIGHT_BUTTON = {96, 0, ICONSIZE, ICONSIZE}; +constexpr SDL_Rect START_BUTTON = {0, 0, ICONSIZE, ICONSIZE}; constexpr SDL_Rect CONTROLLER_UP_POS = {PADDING.x, PADDING.y + 18 * 0, ICONSIZE, ICONSIZE}; constexpr SDL_Rect CONTROLLER_DOWN_POS = {PADDING.x, PADDING.y + 18 * 1, ICONSIZE, ICONSIZE};