| 1234567891011121314151617181920212223242526272829303132 |
- // SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
- // SPDX-License-Identifier: GPL-2.0-or-later
- #pragma once
- // suyu data directories
- #define SUYU_DIR "suyu"
- #define PORTABLE_DIR "user"
- // Sub-directories contained within a suyu data directory
- #define AMIIBO_DIR "amiibo"
- #define CACHE_DIR "cache"
- #define CONFIG_DIR "config"
- #define CRASH_DUMPS_DIR "crash_dumps"
- #define DUMP_DIR "dump"
- #define ICONS_DIR "icons"
- #define KEYS_DIR "keys"
- #define LOAD_DIR "load"
- #define LOG_DIR "log"
- #define NAND_DIR "nand"
- #define PLAY_TIME_DIR "play_time"
- #define SCREENSHOTS_DIR "screenshots"
- #define SDMC_DIR "sdmc"
- #define SHADER_DIR "shader"
- #define TAS_DIR "tas"
- #define THEMES_DIR "qt_themes"
- // suyu-specific files
- #define LOG_FILE "suyu_log.txt"
|