Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ZAPD/ZRom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace fs = std::filesystem;
#define __bswap_32 _byteswap_ulong
#define bswap_32 _byteswap_ulong
#endif
#if defined __APPLE__
#if defined SDL_PLATFORM_APPLE
#define __bswap32 __builtin_bswap32
#define bswap32 __builtin_bswap32
#endif
Expand Down
2 changes: 1 addition & 1 deletion lib/tinyxml2/tinyxml2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ distribution.
#include "tinyxml2.h"

#include <new> // yes, this one new style header, is in the Android SDK.
#if defined(ANDROID_NDK) || defined(__BORLANDC__) || defined(__QNXNTO__)
#if defined(ANDROID_NDK) || defined(__BORLANDC__) || defined(SDL_PLATFORM_QNXNTO)
# include <stddef.h>
# include <stdarg.h>
#else
Expand Down
2 changes: 1 addition & 1 deletion lib/tinyxml2/tinyxml2.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ distribution.
#ifndef TINYXML2_INCLUDED
#define TINYXML2_INCLUDED

#if defined(ANDROID_NDK) || defined(__BORLANDC__) || defined(__QNXNTO__)
#if defined(ANDROID_NDK) || defined(__BORLANDC__) || defined(SDL_PLATFORM_QNXNTO)
# include <ctype.h>
# include <limits.h>
# include <stdio.h>
Expand Down