early-access version 3714
This commit is contained in:
parent
a6fe9b4031
commit
5060a956eb
@ -1,7 +1,7 @@
|
|||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 3713.
|
This is the source code for early-access 3714.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#include <version>
|
||||||
#if __cpp_lib_chrono >= 201907L
|
#if __cpp_lib_chrono >= 201907L
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
|
#include <exception>
|
||||||
|
#include <stdexcept>
|
||||||
#endif
|
#endif
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
|
|
||||||
@ -25,9 +28,19 @@ std::string GetTimeZoneString() {
|
|||||||
if (time_zone_index == 0) { // Auto
|
if (time_zone_index == 0) { // Auto
|
||||||
#if __cpp_lib_chrono >= 201907L
|
#if __cpp_lib_chrono >= 201907L
|
||||||
const struct std::chrono::tzdb& time_zone_data = std::chrono::get_tzdb();
|
const struct std::chrono::tzdb& time_zone_data = std::chrono::get_tzdb();
|
||||||
const std::chrono::time_zone* current_zone = time_zone_data.current_zone();
|
try {
|
||||||
std::string_view current_zone_name = current_zone->name();
|
const std::chrono::time_zone* current_zone = time_zone_data.current_zone();
|
||||||
location_name = current_zone_name;
|
std::string_view current_zone_name = current_zone->name();
|
||||||
|
location_name = current_zone_name;
|
||||||
|
} catch (std::runtime_error& runtime_error) {
|
||||||
|
// VCRUNTIME will throw a runtime_error if the operating system's selected time zone
|
||||||
|
// cannot be found
|
||||||
|
location_name = Common::TimeZone::FindSystemTimeZone();
|
||||||
|
LOG_WARNING(Common,
|
||||||
|
"Error occurred when trying to determine system time zone:\n{}\nFalling "
|
||||||
|
"back to hour offset \"{}\"",
|
||||||
|
runtime_error.what(), location_name);
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
location_name = Common::TimeZone::FindSystemTimeZone();
|
location_name = Common::TimeZone::FindSystemTimeZone();
|
||||||
#endif
|
#endif
|
||||||
|
@ -322,11 +322,6 @@ std::shared_ptr<Dynarmic::A32::Jit> ARM_Dynarmic_32::MakeJit(Common::PageTable*
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ARCHITECTURE_arm64
|
|
||||||
// TODO: remove when fixed in dynarmic
|
|
||||||
config.optimizations &= ~Dynarmic::OptimizationFlag::BlockLinking;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return std::make_unique<Dynarmic::A32::Jit>(config);
|
return std::make_unique<Dynarmic::A32::Jit>(config);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user