aboutsummaryrefslogtreecommitdiff
path: root/src/Theme.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-04-23 22:19:57 +0200
committerdec05eba <dec05eba@protonmail.com>2025-04-23 22:20:47 +0200
commit329ccdc970d31e2993226bac6bd784404357819d (patch)
treee7f3105f2305956d2cb82eefd5ca9e9324d772b9 /src/Theme.cpp
parentb64b90d0b165a6364206fa6ee7918905afd76fe5 (diff)
Save replay/streaming recording to correct location when saving to game folder. Add controller hotkey to save 1 min/10 min replay1.5.0
Diffstat (limited to 'src/Theme.cpp')
-rw-r--r--src/Theme.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Theme.cpp b/src/Theme.cpp
index cafaf62..6c384e3 100644
--- a/src/Theme.cpp
+++ b/src/Theme.cpp
@@ -135,6 +135,12 @@ namespace gsr {
if(!theme->ps4_dpad_right_texture.load_from_file((resources_path + "images/ps4_dpad_right.png").c_str(), mgl::Texture::LoadOptions{false, false, MGL_TEXTURE_SCALE_LINEAR_MIPMAP}))
goto error;
+ if(!theme->ps4_cross_texture.load_from_file((resources_path + "images/ps4_cross.png").c_str(), mgl::Texture::LoadOptions{false, false, MGL_TEXTURE_SCALE_LINEAR_MIPMAP}))
+ goto error;
+
+ if(!theme->ps4_triangle_texture.load_from_file((resources_path + "images/ps4_triangle.png").c_str(), mgl::Texture::LoadOptions{false, false, MGL_TEXTURE_SCALE_LINEAR_MIPMAP}))
+ goto error;
+
return true;
error: