summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fs/archive.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-01-04 15:10:27 +0100
committerSubv <subv2112@gmail.com>2015-01-04 15:10:27 +0100
commit90dffe3fc16dd60166c53bafa2b3157737f39225 (patch)
treef2c7fa4e0405aea0107765810451d43ba8861ba5 /src/core/hle/service/fs/archive.h
parentArchives: Changed the way paths are built for the archives. (diff)
downloadyuzu-90dffe3fc16dd60166c53bafa2b3157737f39225.tar
yuzu-90dffe3fc16dd60166c53bafa2b3157737f39225.tar.gz
yuzu-90dffe3fc16dd60166c53bafa2b3157737f39225.tar.bz2
yuzu-90dffe3fc16dd60166c53bafa2b3157737f39225.tar.lz
yuzu-90dffe3fc16dd60166c53bafa2b3157737f39225.tar.xz
yuzu-90dffe3fc16dd60166c53bafa2b3157737f39225.tar.zst
yuzu-90dffe3fc16dd60166c53bafa2b3157737f39225.zip
Diffstat (limited to 'src/core/hle/service/fs/archive.h')
-rw-r--r--src/core/hle/service/fs/archive.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/fs/archive.h b/src/core/hle/service/fs/archive.h
index f91a3d5f4..b3f2134f2 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 {