MIYOO: frontend: use CWD for PCSX_DOT_DIR
authorApaczer <94932128+Apaczer@users.noreply.github.com>
Mon, 11 Aug 2025 19:33:31 +0000 (21:33 +0200)
committerApaczer <94932128+Apaczer@users.noreply.github.com>
Wed, 20 Aug 2025 13:06:40 +0000 (15:06 +0200)
frontend/main.c
frontend/main.h

index 5486ebd..a4a3a48 100644 (file)
@@ -503,7 +503,7 @@ void emu_core_ask_exit(void)
 
 static const char *get_home_dir(void)
 {
-#if defined(PANDORA) || !defined(__unix__)
+#if defined(PANDORA) || !defined(__unix__) || defined(MIYOO)
        return ".";
 #else
        static const char *home = NULL;
index 3c17f8c..57f27c1 100644 (file)
@@ -30,7 +30,7 @@
 #define CHEATS_DIR         PCSX_DOT_DIR "cheats/"
 #define PATCHES_DIR        PCSX_DOT_DIR "patches/"
 #define CFG_DIR            PCSX_DOT_DIR "cfg/"
-#ifndef PANDORA
+#if !defined(PANDORA) && !defined(MIYOO)
 #define BIOS_DIR           PCSX_DOT_DIR "bios/"
 #define SCREENSHOTS_DIR    PCSX_DOT_DIR "screenshots/"
 #else