From 6b92ee33486d702e8d33d30912a13c042e8d571b Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Fri, 17 May 2019 16:41:13 +1000 Subject: [PATCH] Fix launcher menu not usingg custom default texture pack's default.png and terrain.png if they exist --- src/Launcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Launcher.c b/src/Launcher.c index daedae869..94e1a1796 100644 --- a/src/Launcher.c +++ b/src/Launcher.c @@ -413,7 +413,7 @@ void Launcher_TryLoadTexturePack(void) { Options_UNSAFE_Get(OPT_DEFAULT_TEX_PACK, &texPack); String_InitArray(path, pathBuffer); - String_Format1(&path, "texpacks/", &texPack); + String_Format1(&path, "texpacks/%s", &texPack); if (!texPack.length || !File_Exists(&path)) path = defZipPath; if (!File_Exists(&path)) return;