fs_paths.h 760 B

1234567891011121314151617181920212223242526272829303132
  1. // SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. // suyu data directories
  5. #define SUYU_DIR "suyu"
  6. #define PORTABLE_DIR "user"
  7. // Sub-directories contained within a suyu data directory
  8. #define AMIIBO_DIR "amiibo"
  9. #define CACHE_DIR "cache"
  10. #define CONFIG_DIR "config"
  11. #define CRASH_DUMPS_DIR "crash_dumps"
  12. #define DUMP_DIR "dump"
  13. #define ICONS_DIR "icons"
  14. #define KEYS_DIR "keys"
  15. #define LOAD_DIR "load"
  16. #define LOG_DIR "log"
  17. #define NAND_DIR "nand"
  18. #define PLAY_TIME_DIR "play_time"
  19. #define SCREENSHOTS_DIR "screenshots"
  20. #define SDMC_DIR "sdmc"
  21. #define SHADER_DIR "shader"
  22. #define TAS_DIR "tas"
  23. #define THEMES_DIR "qt_themes"
  24. // suyu-specific files
  25. #define LOG_FILE "suyu_log.txt"