From cbc7a932997fa82f6b740c6f813810f566c555b2 Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Sun, 29 Dec 2024 18:18:14 +0100 Subject: [PATCH] hdPath is a better default for mediaPath --- ISLE/isleapp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ISLE/isleapp.cpp b/ISLE/isleapp.cpp index 453ce64e..f96be68a 100644 --- a/ISLE/isleapp.cpp +++ b/ISLE/isleapp.cpp @@ -550,7 +550,7 @@ void IsleApp::LoadConfig() strcpy(m_cdPath, cdPath); MxOmni::SetCD(m_cdPath); - const char* mediaPath = iniparser_getstring(dict, "isle:mediapath", cdPath); + const char* mediaPath = iniparser_getstring(dict, "isle:mediapath", hdPath); m_mediaPath = new char[strlen(mediaPath) + 1]; strcpy(m_mediaPath, mediaPath);