Skip to content
Snippets Groups Projects
Commit 44146402 authored by bunnei's avatar bunnei
Browse files

system_archive: Add a basic HLE implementation for time zone binary.

parent 78f977c9
No related branches found
No related tags found
No related merge requests found
...@@ -96,6 +96,8 @@ add_library(core STATIC ...@@ -96,6 +96,8 @@ add_library(core STATIC
file_sys/system_archive/system_archive.h file_sys/system_archive/system_archive.h
file_sys/system_archive/system_version.cpp file_sys/system_archive/system_version.cpp
file_sys/system_archive/system_version.h file_sys/system_archive/system_version.h
file_sys/system_archive/time_zone_binary.cpp
file_sys/system_archive/time_zone_binary.h
file_sys/vfs.cpp file_sys/vfs.cpp
file_sys/vfs.h file_sys/vfs.h
file_sys/vfs_concat.cpp file_sys/vfs_concat.cpp
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
#include "core/file_sys/system_archive/shared_font.h" #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_archive.h"
#include "core/file_sys/system_archive/system_version.h" #include "core/file_sys/system_archive/system_version.h"
#include "core/file_sys/system_archive/time_zone_binary.h"
namespace FileSys::SystemArchive { namespace FileSys::SystemArchive {
...@@ -38,7 +39,7 @@ constexpr std::array<SystemArchiveDescriptor, SYSTEM_ARCHIVE_COUNT> SYSTEM_ARCHI ...@@ -38,7 +39,7 @@ constexpr std::array<SystemArchiveDescriptor, SYSTEM_ARCHIVE_COUNT> SYSTEM_ARCHI
{0x010000000000080B, "LocalNews", nullptr}, {0x010000000000080B, "LocalNews", nullptr},
{0x010000000000080C, "Eula", nullptr}, {0x010000000000080C, "Eula", nullptr},
{0x010000000000080D, "UrlBlackList", nullptr}, {0x010000000000080D, "UrlBlackList", nullptr},
{0x010000000000080E, "TimeZoneBinary", nullptr}, {0x010000000000080E, "TimeZoneBinary", &TimeZoneBinary},
{0x010000000000080F, "CertStoreCruiser", nullptr}, {0x010000000000080F, "CertStoreCruiser", nullptr},
{0x0100000000000810, "FontNintendoExtension", &FontNintendoExtension}, {0x0100000000000810, "FontNintendoExtension", &FontNintendoExtension},
{0x0100000000000811, "FontStandard", &FontStandard}, {0x0100000000000811, "FontStandard", &FontStandard},
......
This diff is collapsed.
// Copyright 2019 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <string>
#include "core/file_sys/vfs_types.h"
namespace FileSys::SystemArchive {
VirtualDir TimeZoneBinary();
} // namespace FileSys::SystemArchive
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment