summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/system_archive/system_archive.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-12-22 23:50:44 +0100
committerbunnei <bunneidev@gmail.com>2020-01-04 19:48:29 +0100
commit4414640285b0f87bc5efed46127dcc80632e7892 (patch)
treecf5b0d7d9dc3fbef90935953404db475702d8a80 /src/core/file_sys/system_archive/system_archive.cpp
parentservice: time: Rewrite implementation of glue services. (diff)
downloadyuzu-4414640285b0f87bc5efed46127dcc80632e7892.tar
yuzu-4414640285b0f87bc5efed46127dcc80632e7892.tar.gz
yuzu-4414640285b0f87bc5efed46127dcc80632e7892.tar.bz2
yuzu-4414640285b0f87bc5efed46127dcc80632e7892.tar.lz
yuzu-4414640285b0f87bc5efed46127dcc80632e7892.tar.xz
yuzu-4414640285b0f87bc5efed46127dcc80632e7892.tar.zst
yuzu-4414640285b0f87bc5efed46127dcc80632e7892.zip
Diffstat (limited to 'src/core/file_sys/system_archive/system_archive.cpp')
-rw-r--r--src/core/file_sys/system_archive/system_archive.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/file_sys/system_archive/system_archive.cpp b/src/core/file_sys/system_archive/system_archive.cpp
index e93d100a5..a6696024e 100644
--- a/src/core/file_sys/system_archive/system_archive.cpp
+++ b/src/core/file_sys/system_archive/system_archive.cpp
@@ -9,6 +9,7 @@
#include "core/file_sys/system_archive/shared_font.h"
#include "core/file_sys/system_archive/system_archive.h"
#include "core/file_sys/system_archive/system_version.h"
+#include "core/file_sys/system_archive/time_zone_binary.h"
namespace FileSys::SystemArchive {
@@ -38,7 +39,7 @@ constexpr std::array<SystemArchiveDescriptor, SYSTEM_ARCHIVE_COUNT> SYSTEM_ARCHI
{0x010000000000080B, "LocalNews", nullptr},
{0x010000000000080C, "Eula", nullptr},
{0x010000000000080D, "UrlBlackList", nullptr},
- {0x010000000000080E, "TimeZoneBinary", nullptr},
+ {0x010000000000080E, "TimeZoneBinary", &TimeZoneBinary},
{0x010000000000080F, "CertStoreCruiser", nullptr},
{0x0100000000000810, "FontNintendoExtension", &FontNintendoExtension},
{0x0100000000000811, "FontStandard", &FontStandard},