From 8e37c603e40896590fcbe7ab098da15b12b48d64 Mon Sep 17 00:00:00 2001 From: Archie_UwU Date: Mon, 30 Sep 2024 17:56:14 +0200 Subject: [PATCH] Use _WIN64 instead of _WIN32 Because WIN32 is true on x64... wtf microsoft --- Aurie/source/framework/shared.hpp | 2 +- TestModule/source/Aurie/shared.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Aurie/source/framework/shared.hpp b/Aurie/source/framework/shared.hpp index 8cfbce5..b60f8da 100644 --- a/Aurie/source/framework/shared.hpp +++ b/Aurie/source/framework/shared.hpp @@ -220,7 +220,7 @@ namespace Aurie uint32_t EIP; }; -#ifndef _WIN32 +#ifdef _WIN64 using ProcessorContext = ProcessorContext64; #else using ProcessorContext = ProcessorContext32; diff --git a/TestModule/source/Aurie/shared.hpp b/TestModule/source/Aurie/shared.hpp index 8cfbce5..b60f8da 100644 --- a/TestModule/source/Aurie/shared.hpp +++ b/TestModule/source/Aurie/shared.hpp @@ -220,7 +220,7 @@ namespace Aurie uint32_t EIP; }; -#ifndef _WIN32 +#ifdef _WIN64 using ProcessorContext = ProcessorContext64; #else using ProcessorContext = ProcessorContext32;