2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 15:44:56 +00:00

Check _M_X64 for MSVC; update hecl, specter

This commit is contained in:
2021-02-15 21:05:16 -05:00
parent b171f34b12
commit 5f263b8a4f
3 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ static logvisor::Module Log{"URDE"};
static hecl::SystemString CPUFeatureString(const zeus::CPUInfo& cpuInf) { static hecl::SystemString CPUFeatureString(const zeus::CPUInfo& cpuInf) {
hecl::SystemString features; hecl::SystemString features;
#if __x86_64__ #if defined(__x86_64__) || defined(_M_X64)
auto AddFeature = [&features](const hecl::SystemChar* str) { auto AddFeature = [&features](const hecl::SystemChar* str) {
if (!features.empty()) if (!features.empty())
features += _SYS_STR(", "); features += _SYS_STR(", ");

2
hecl

Submodule hecl updated: ec30cc090a...c53569993c

Submodule specter updated: c1aa982474...e061a0ef21