Skip to content

Commit

Permalink
Use _WIN64 instead of _WIN32
Browse files Browse the repository at this point in the history
Because WIN32 is true on x64... wtf microsoft
  • Loading branch information
Archie-osu committed Sep 30, 2024
1 parent 395779b commit 8e37c60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Aurie/source/framework/shared.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ namespace Aurie
uint32_t EIP;
};

#ifndef _WIN32
#ifdef _WIN64
using ProcessorContext = ProcessorContext64;
#else
using ProcessorContext = ProcessorContext32;
Expand Down
2 changes: 1 addition & 1 deletion TestModule/source/Aurie/shared.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ namespace Aurie
uint32_t EIP;
};

#ifndef _WIN32
#ifdef _WIN64
using ProcessorContext = ProcessorContext64;
#else
using ProcessorContext = ProcessorContext32;
Expand Down

0 comments on commit 8e37c60

Please sign in to comment.