99ceb03a1c
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
28 lines
603 B
C++
28 lines
603 B
C++
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#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"
|
|
#define TAS_DIR "tas"
|
|
|
|
// yuzu-specific files
|
|
|
|
#define LOG_FILE "yuzu_log.txt"
|