diff options
author | 2024-10-11 15:34:55 +0200 | |
---|---|---|
committer | 2024-10-11 15:34:55 +0200 | |
commit | 892f2d911bd2385d68e84d1dd8e5e642dfd94211 (patch) | |
tree | cfd95be83115a12d156d7c051d6b900b4f146af5 /games-simulation/openrct2/files/openrct2-0.4.15-include-additional-paths.patch | |
parent | app-misc/openhab-bin: add 4.2.2 (diff) | |
download | gentoo-892f2d911bd2385d68e84d1dd8e5e642dfd94211.tar.gz gentoo-892f2d911bd2385d68e84d1dd8e5e642dfd94211.tar.bz2 gentoo-892f2d911bd2385d68e84d1dd8e5e642dfd94211.zip |
games-simulation/openrct2: add correct path patch
Closes: https://bugs.gentoo.org/941262
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'games-simulation/openrct2/files/openrct2-0.4.15-include-additional-paths.patch')
-rw-r--r-- | games-simulation/openrct2/files/openrct2-0.4.15-include-additional-paths.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/games-simulation/openrct2/files/openrct2-0.4.15-include-additional-paths.patch b/games-simulation/openrct2/files/openrct2-0.4.15-include-additional-paths.patch new file mode 100644 index 000000000000..16d306260e67 --- /dev/null +++ b/games-simulation/openrct2/files/openrct2-0.4.15-include-additional-paths.patch @@ -0,0 +1,17 @@ +--- a/src/openrct2/platform/Platform.Linux.cpp ++++ b/src/openrct2/platform/Platform.Linux.cpp +@@ -335,12 +335,12 @@ + + std::vector<std::string_view> GetSearchablePathsRCT1() + { +- return {}; ++ return { "/usr/share/openrct2/rct1_data" }; + } + + std::vector<std::string_view> GetSearchablePathsRCT2() + { +- return {}; ++ return { "/usr/share/openrct2/rct2_data" }; + } + + # ifndef NO_TTF |