2021-05-08 11:49:31 +04:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// yuzu data directories
|
|
|
|
|
|
|
|
#define YUZU_DIR "yuzu"
|
|
|
|
#define PORTABLE_DIR "user"
|
|
|
|
|
|
|
|
// Sub-directories contained within a yuzu data directory
|
|
|
|
|
|
|
|
#define CACHE_DIR "cache"
|
|
|
|
#define CONFIG_DIR "config"
|
|
|
|
#define DUMP_DIR "dump"
|
|
|
|
#define KEYS_DIR "keys"
|
|
|
|
#define LOAD_DIR "load"
|
|
|
|
#define LOG_DIR "log"
|
|
|
|
#define NAND_DIR "nand"
|
|
|
|
#define SCREENSHOTS_DIR "screenshots"
|
|
|
|
#define SDMC_DIR "sdmc"
|
|
|
|
#define SHADER_DIR "shader"
|
2021-07-26 05:00:19 +04:00
|
|
|
#define TAS_DIR "tas"
|
2021-05-08 11:49:31 +04:00
|
|
|
|
|
|
|
// yuzu-specific files
|
|
|
|
|
|
|
|
#define LOG_FILE "yuzu_log.txt"
|