From 401a9165ab7f866ea67c1f37ce901b388661b9ec Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Sat, 20 Dec 2025 16:42:07 -0300 Subject: [PATCH] Add one more AppImage asset path --- src/86box.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/86box.c b/src/86box.c index 1d4e527c8..4bf73790e 100644 --- a/src/86box.c +++ b/src/86box.c @@ -1048,11 +1048,13 @@ usage: asset_add_path(temp); } #elif !defined(_WIN32) - // Add the standard asset path within the AppImage. + // Add the standard asset paths within the AppImage. p = getenv("APPDIR"); if (p && (p[0] != '\0')) { path_append_filename(temp, p, "usr/local/share/" EMU_NAME "/assets"); asset_add_path(temp); + path_append_filename(temp, p, "usr/share/" EMU_NAME "/assets"); + asset_add_path(temp); } #endif