Skip to content

Commit

Permalink
Little fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
tx00100xt committed Dec 11, 2023
1 parent 8410054 commit cd5cb0a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SamTFE/Sources/Engine/Base/Unzip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
typedef unsigned char Byte; // !!! FIXME: not sure why I suddenly needed this typedef here.
#endif

#ifdef PLATFORM_UNIX && !SE1_ZLIB
#if defined(PLATFORM_UNIX) && !SE1_ZLIB
#include <zlib.h>
#else
#include <Engine/zlib/zlib.h>
Expand Down
2 changes: 1 addition & 1 deletion SamTFE/Sources/Engine/Network/Compression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <Engine/Network/Compression.h>
#include <Engine/Base/Synchronization.h>

#ifdef PLATFORM_UNIX && !SE1_ZLIB
#if defined(PLATFORM_UNIX) && !SE1_ZLIB
#include <zlib.h>
#else
#include <Engine/zlib/zlib.h>
Expand Down
2 changes: 1 addition & 1 deletion SamTSE/Sources/Engine/Base/Unzip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
typedef unsigned char Byte; // !!! FIXME: not sure why I suddenly needed this typedef here.
#endif

#ifdef PLATFORM_UNIX && !SE1_ZLIB
#if defined(PLATFORM_UNIX) && !SE1_ZLIB
#include <zlib.h>
#else
#include <Engine/zlib/zlib.h>
Expand Down
2 changes: 1 addition & 1 deletion SamTSE/Sources/Engine/Network/Compression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <Engine/Network/Compression.h>
#include <Engine/Base/Synchronization.h>

#ifdef PLATFORM_UNIX && !SE1_ZLIB
#if defined(PLATFORM_UNIX) && !SE1_ZLIB
#include <zlib.h>
#else
#include <Engine/zlib/zlib.h>
Expand Down

0 comments on commit cd5cb0a

Please sign in to comment.