summaryrefslogtreecommitdiff
path: root/src/common/fs/fs_paths.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/fs/fs_paths.h')
-rw-r--r--src/common/fs/fs_paths.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/common/fs/fs_paths.h b/src/common/fs/fs_paths.h
new file mode 100644
index 000000000..b32614797
--- /dev/null
+++ b/src/common/fs/fs_paths.h
@@ -0,0 +1,27 @@
1// Copyright 2021 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#pragma once
6
7// yuzu data directories
8
9#define YUZU_DIR "yuzu"
10#define PORTABLE_DIR "user"
11
12// Sub-directories contained within a yuzu data directory
13
14#define CACHE_DIR "cache"
15#define CONFIG_DIR "config"
16#define DUMP_DIR "dump"
17#define KEYS_DIR "keys"
18#define LOAD_DIR "load"
19#define LOG_DIR "log"
20#define NAND_DIR "nand"
21#define SCREENSHOTS_DIR "screenshots"
22#define SDMC_DIR "sdmc"
23#define SHADER_DIR "shader"
24
25// yuzu-specific files
26
27#define LOG_FILE "yuzu_log.txt"