2025-06-09 01:40:21 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2021-05-25 19:32:56 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// yuzu data directories
|
|
|
|
|
2025-05-08 22:16:07 +00:00
|
|
|
#define EDEN_DIR "eden"
|
2021-05-25 19:32:56 -04:00
|
|
|
#define PORTABLE_DIR "user"
|
|
|
|
|
|
|
|
// Sub-directories contained within a yuzu data directory
|
2023-06-04 15:50:44 -06:00
|
|
|
#define AMIIBO_DIR "amiibo"
|
2021-05-25 19:32:56 -04:00
|
|
|
#define CACHE_DIR "cache"
|
|
|
|
#define CONFIG_DIR "config"
|
2023-10-04 13:11:05 -04:00
|
|
|
#define CRASH_DUMPS_DIR "crash_dumps"
|
2021-05-25 19:32:56 -04:00
|
|
|
#define DUMP_DIR "dump"
|
|
|
|
#define KEYS_DIR "keys"
|
|
|
|
#define LOAD_DIR "load"
|
|
|
|
#define LOG_DIR "log"
|
|
|
|
#define NAND_DIR "nand"
|
2023-08-26 21:19:00 -04:00
|
|
|
#define PLAY_TIME_DIR "play_time"
|
2021-05-25 19:32:56 -04:00
|
|
|
#define SCREENSHOTS_DIR "screenshots"
|
|
|
|
#define SDMC_DIR "sdmc"
|
|
|
|
#define SHADER_DIR "shader"
|
2021-06-19 14:38:49 -05:00
|
|
|
#define TAS_DIR "tas"
|
2023-10-07 17:26:04 +02:00
|
|
|
#define ICONS_DIR "icons"
|
2025-09-08 00:57:08 +02:00
|
|
|
|
|
|
|
// Compatibility with other emulators
|
2025-05-08 22:16:07 +00:00
|
|
|
#define CITRON_DIR "citron"
|
|
|
|
#define SUDACHI_DIR "sudachi"
|
|
|
|
#define YUZU_DIR "yuzu"
|
|
|
|
#define SUYU_DIR "suyu"
|
2021-05-25 19:32:56 -04:00
|
|
|
|
|
|
|
// yuzu-specific files
|
2025-04-01 18:36:48 +02:00
|
|
|
#define LOG_FILE "eden_log.txt"
|