diff --git a/resources/g2/icons/view.png b/resources/g2/icons/view.png new file mode 100644 index 0000000000..811c3c1ff9 Binary files /dev/null and b/resources/g2/icons/view.png differ diff --git a/resources/g2/sprites.json b/resources/g2/sprites.json index 0cf8334f1e..6343ff1cbe 100644 --- a/resources/g2/sprites.json +++ b/resources/g2/sprites.json @@ -475,6 +475,9 @@ "x_offset": -30, "y_offset": -15 }, + { + "path": "icons/view.png" + }, { "path": "font/latin/ae-uc-small.png", "y_offset": 0, diff --git a/src/openrct2-ui/windows/ShortcutKeys.cpp b/src/openrct2-ui/windows/ShortcutKeys.cpp index 486ed5b760..4833665ca6 100644 --- a/src/openrct2-ui/windows/ShortcutKeys.cpp +++ b/src/openrct2-ui/windows/ShortcutKeys.cpp @@ -372,7 +372,7 @@ private: { _tabs.clear(); _tabs.push_back({ "interface", SPR_TAB_GEARS_0, 2, 4 }); - _tabs.push_back({ "view", 0, 0, 0 }); + _tabs.push_back({ "view", SPR_G2_VIEW, 0, 0 }); _tabs.push_back({ "window", SPR_TAB_PARK_ENTRANCE, 0, 0 }); _tabs.push_back({ {}, SPR_TAB_WRENCH_0, 2, 16 }); } diff --git a/src/openrct2/sprites.h b/src/openrct2/sprites.h index 912a2ac043..6efc5e0347 100644 --- a/src/openrct2/sprites.h +++ b/src/openrct2/sprites.h @@ -863,7 +863,9 @@ enum SPR_G2_WOODEN_RC_BOOSTER_SW_NE = SPR_G2_BEGIN + 135, SPR_G2_WOODEN_RC_BOOSTER_NW_SE = SPR_G2_BEGIN + 136, - SPR_G2_CHAR_BEGIN = SPR_G2_BEGIN + 137, + SPR_G2_VIEW = SPR_G2_BEGIN + 137, + + SPR_G2_CHAR_BEGIN = SPR_G2_BEGIN + 138, SPR_G2_AE_UPPER = SPR_G2_CHAR_BEGIN, SPR_G2_AE_LOWER = SPR_G2_CHAR_BEGIN + 1,