This commit is contained in:
CrazyBloo 2024-09-12 23:02:16 -04:00
parent d7564b2d5a
commit c1b73b170e
3 changed files with 5 additions and 5 deletions

View File

@ -3,8 +3,8 @@
#include <algorithm>
#include <codecvt>
#include <string>
#include <sstream>
#include <string>
#include <pugixml.hpp>
#ifdef ENABLE_QT_GUI
#include <QFile>
@ -23,7 +23,7 @@
namespace MemoryPatcher {
uintptr_t g_eboot_address;
u64 g_eboot_image_size;
uint64_t g_eboot_image_size;
std::string g_game_serial;
std::string patchFile;
std::vector<patchInfo> pending_patches;

View File

@ -9,7 +9,7 @@
namespace MemoryPatcher {
extern uintptr_t g_eboot_address;
extern u64 g_eboot_image_size;
extern uint64_t g_eboot_image_size;
extern std::string g_game_serial;
extern std::string patchFile;

View File

@ -27,8 +27,8 @@
#include <QVBoxLayout>
#include <QXmlStreamReader>
#include <common/logging/log.h>
#include "common/memory_patcher.h"
#include "cheats_patches.h"
#include "common/memory_patcher.h"
#include "common/path_util.h"
#include "core/module.h"