Skip to content

Commit

Permalink
Return os name "win64" on Win x64
Browse files Browse the repository at this point in the history
  • Loading branch information
kbernhagen committed Dec 29, 2023
1 parent 35bef9e commit 7479687
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/fah/client/win/WinOSImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,13 @@ void WinOSImpl::init() {
}


const char *WinOSImpl::getName() const {return "win32";}
const char *WinOSImpl::getName() const {
#ifdef _WIN64
return "win64";
#else
return "win32";
#endif
}


const char *WinOSImpl::getCPU() const {
Expand Down

0 comments on commit 7479687

Please sign in to comment.