mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2026-01-29 16:02:53 -05:00
Fix 64-bit build
This commit is contained in:
@@ -3,4 +3,5 @@
|
|||||||
namespace koalageddon::steamclient {
|
namespace koalageddon::steamclient {
|
||||||
|
|
||||||
void process_client_engine(uintptr_t interface);
|
void process_client_engine(uintptr_t interface);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -196,7 +196,9 @@ namespace steam_functions {
|
|||||||
}
|
}
|
||||||
} else if (version_string.starts_with(CLIENT_ENGINE)) {
|
} else if (version_string.starts_with(CLIENT_ENGINE)) {
|
||||||
// Koalageddon mode
|
// Koalageddon mode
|
||||||
|
#ifndef _WIN64
|
||||||
koalageddon::steamclient::process_client_engine(reinterpret_cast<uintptr_t>(interface));
|
koalageddon::steamclient::process_client_engine(reinterpret_cast<uintptr_t>(interface));
|
||||||
|
#endif
|
||||||
} else {
|
} else {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user