b90ff739a0
* Add CheatEngine; Add support for Gateway cheats; Add Cheat UI * fix a potential crash on some systems * fix substr with negative length * Add Joker to the NonOp comp handling * Fixup JokerOp * minor fixup in patchop; add todo for nested loops * Add comment for PadState member variable in HID * fix: stol to stoul in parsing cheat file * fix misplaced parsing of values; fix patchop code * add missing break * Make read_func and write_func a template parameter
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
// Directory separators, do we need this?
|
|
#define DIR_SEP "/"
|
|
#define DIR_SEP_CHR '/'
|
|
|
|
#ifndef MAX_PATH
|
|
#define MAX_PATH 260
|
|
#endif
|
|
|
|
// The user data dir
|
|
#define ROOT_DIR "."
|
|
#define USERDATA_DIR "user"
|
|
#ifdef USER_DIR
|
|
#define EMU_DATA_DIR USER_DIR
|
|
#else
|
|
#ifdef _WIN32
|
|
#define EMU_DATA_DIR "Citra"
|
|
#else
|
|
#define EMU_DATA_DIR "citra-emu"
|
|
#endif
|
|
#endif
|
|
|
|
// Dirs in both User and Sys
|
|
#define EUR_DIR "EUR"
|
|
#define USA_DIR "USA"
|
|
#define JAP_DIR "JAP"
|
|
|
|
// Subdirs in the User dir returned by GetUserPath(UserPath::UserDir)
|
|
#define CONFIG_DIR "config"
|
|
#define CACHE_DIR "cache"
|
|
#define SDMC_DIR "sdmc"
|
|
#define NAND_DIR "nand"
|
|
#define SYSDATA_DIR "sysdata"
|
|
#define LOG_DIR "log"
|
|
#define CHEATS_DIR "cheats"
|
|
|
|
// Filenames
|
|
// Files in the directory returned by GetUserPath(UserPath::LogDir)
|
|
#define LOG_FILE "citra_log.txt"
|
|
|
|
// Files in the directory returned by GetUserPath(UserPath::ConfigDir)
|
|
#define EMU_CONFIG "emu.ini"
|
|
#define DEBUGGER_CONFIG "debugger.ini"
|
|
#define LOGGER_CONFIG "logger.ini"
|
|
|
|
// Sys files
|
|
#define SHARED_FONT "shared_font.bin"
|
|
#define AES_KEYS "aes_keys.txt"
|
|
#define BOOTROM9 "boot9.bin"
|
|
#define SECRET_SECTOR "sector0x96.bin"
|