Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Update main.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
mq1n committed Jun 25, 2021
1 parent 5b0be19 commit 06c7f23
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ int main(int, char* argv[])

std::cout << "\tProcessor arch: " << sysInfo.wProcessorArchitecture << std::endl;

if (sysInfo.wProcessorArchitecture != PROCESSOR_ARCHITECTURE_AMD64 && sysInfo.wProcessorArchitecture != PROCESSOR_ARCHITECTURE_IA64)
if (sysInfo.wProcessorArchitecture != PROCESSOR_ARCHITECTURE_AMD64 &&
sysInfo.wProcessorArchitecture != PROCESSOR_ARCHITECTURE_IA64 &&
sysInfo.wProcessorArchitecture != PROCESSOR_ARCHITECTURE_ARM64)
{
std::cerr << "System processor arch must be x64!" << std::endl;
std::system("PAUSE");
Expand Down

0 comments on commit 06c7f23

Please sign in to comment.