mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-08-11 18:52:32 -07:00
core: Remove HLE module, consolidate code & various cleanups.
This commit is contained in:
@@ -23,7 +23,6 @@
|
||||
#include "core/file_sys/archive_systemsavedata.h"
|
||||
#include "core/file_sys/directory_backend.h"
|
||||
#include "core/file_sys/file_backend.h"
|
||||
#include "core/hle/hle.h"
|
||||
#include "core/hle/kernel/client_session.h"
|
||||
#include "core/hle/result.h"
|
||||
#include "core/hle/service/fs/archive.h"
|
||||
@@ -46,9 +45,7 @@ struct hash<Service::FS::ArchiveIdCode> {
|
||||
};
|
||||
}
|
||||
|
||||
/// TODO(Subv): Confirm length of these strings
|
||||
const std::string SYSTEM_ID = "00000000000000000000000000000000";
|
||||
const std::string SDCARD_ID = "00000000000000000000000000000000";
|
||||
static constexpr Kernel::Handle INVALID_HANDLE{};
|
||||
|
||||
namespace Service {
|
||||
namespace FS {
|
||||
|
@@ -17,9 +17,9 @@ class FileBackend;
|
||||
}
|
||||
|
||||
/// The unique system identifier hash, also known as ID0
|
||||
extern const std::string SYSTEM_ID;
|
||||
static constexpr char SYSTEM_ID[]{ "00000000000000000000000000000000" };
|
||||
/// The scrambled SD card CID, also known as ID1
|
||||
extern const std::string SDCARD_ID;
|
||||
static constexpr char SDCARD_ID[]{ "00000000000000000000000000000000" };
|
||||
|
||||
namespace Service {
|
||||
namespace FS {
|
||||
|
Reference in New Issue
Block a user