fs_paths.h 665 B

1234567891011121314151617181920212223242526272829
  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 AMIIBO_DIR "amiibo"
  9. #define CACHE_DIR "cache"
  10. #define CONFIG_DIR "config"
  11. #define DUMP_DIR "dump"
  12. #define KEYS_DIR "keys"
  13. #define LOAD_DIR "load"
  14. #define LOG_DIR "log"
  15. #define NAND_DIR "nand"
  16. #define PLAY_TIME_DIR "play_time"
  17. #define SCREENSHOTS_DIR "screenshots"
  18. #define SDMC_DIR "sdmc"
  19. #define SHADER_DIR "shader"
  20. #define TAS_DIR "tas"
  21. // yuzu-specific files
  22. #define LOG_FILE "yuzu_log.txt"