Fix build.

This commit is contained in:
Mr_Goldberg 2020-05-01 13:25:51 -04:00
parent 1ff11daf57
commit 657a36a21a
No known key found for this signature in database
GPG Key ID: 8597D87419DEF278
1 changed files with 7 additions and 1 deletions

View File

@ -15,7 +15,13 @@
License along with the Goldberg Emulator; if not, see
<http://www.gnu.org/licenses/>. */
#ifdef STEAM_WIN32
#if defined(WIN64) || defined(_WIN64) || defined(__MINGW64__)
#define __WINDOWS_64__
#elif defined(WIN32) || defined(_WIN32) || defined(__MINGW32__)
#define __WINDOWS_32__
#endif
#if defined(__WINDOWS_32__) || defined(__WINDOWS_64__)
// Nothing to be done here
#else
#define STEAM_API_FUNCTIONS_IMPL