aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/fs
diff options
context:
space:
mode:
authorGravatar Subv <subv2112@gmail.com>2015-01-04 09:10:27 -0500
committerGravatar Subv <subv2112@gmail.com>2015-01-04 09:10:27 -0500
commit90dffe3fc16dd60166c53bafa2b3157737f39225 (patch)
treef2c7fa4e0405aea0107765810451d43ba8861ba5 /src/core/hle/service/fs
parent71a063f45cba961ee07730f4ab79f2bcc3ff9b5b (diff)
Archives: Make SYSTEM_ID and SDCARD_ID strings
Diffstat (limited to 'src/core/hle/service/fs')
-rw-r--r--src/core/hle/service/fs/archive.cpp4
-rw-r--r--src/core/hle/service/fs/archive.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp
index f332d6f1..e627f1d6 100644
--- a/src/core/hle/service/fs/archive.cpp
+++ b/src/core/hle/service/fs/archive.cpp
@@ -36,8 +36,8 @@ namespace std {
};
}
-const u32 SYSTEM_ID = 0;
-const u32 SDCARD_ID = 0;
+const std::string SYSTEM_ID = "00000000000000000000000000000000";
+const std::string SDCARD_ID = "00000000000000000000000000000000";
namespace Service {
namespace FS {
diff --git a/src/core/hle/service/fs/archive.h b/src/core/hle/service/fs/archive.h
index f91a3d5f..b3f2134f 100644
--- a/src/core/hle/service/fs/archive.h
+++ b/src/core/hle/service/fs/archive.h
@@ -11,9 +11,9 @@
#include "core/hle/result.h"
/// The unique system identifier hash, also known as ID0
-extern const u32 SYSTEM_ID;
+extern const std::string SYSTEM_ID;
/// The scrambled SD card CID, also known as ID1
-extern const u32 SDCARD_ID;
+extern const std::string SDCARD_ID;
namespace Service {
namespace FS {