fs_paths.h 603 B

123456789101112131415161718192021222324252627
  1. // SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. // yuzu data directories
  5. #define YUZU_DIR "yuzu"
  6. #define PORTABLE_DIR "user"
  7. // Sub-directories contained within a yuzu data directory
  8. #define CACHE_DIR "cache"
  9. #define CONFIG_DIR "config"
  10. #define DUMP_DIR "dump"
  11. #define KEYS_DIR "keys"
  12. #define LOAD_DIR "load"
  13. #define LOG_DIR "log"
  14. #define NAND_DIR "nand"
  15. #define SCREENSHOTS_DIR "screenshots"
  16. #define SDMC_DIR "sdmc"
  17. #define SHADER_DIR "shader"
  18. #define TAS_DIR "tas"
  19. // yuzu-specific files
  20. #define LOG_FILE "yuzu_log.txt"