Fix 64-bit build

This commit is contained in:
acidicoala
2023-01-07 11:36:12 +03:00
parent b077212d10
commit b1680fe3d7
2 changed files with 3 additions and 0 deletions

View File

@@ -3,4 +3,5 @@
namespace koalageddon::steamclient {
void process_client_engine(uintptr_t interface);
}

View File

@@ -196,7 +196,9 @@ namespace steam_functions {
}
} else if (version_string.starts_with(CLIENT_ENGINE)) {
// Koalageddon mode
#ifndef _WIN64
koalageddon::steamclient::process_client_engine(reinterpret_cast<uintptr_t>(interface));
#endif
} else {
return;
}