diff --git a/Sources/Plasma/CoreLib/HeadSpin.cpp b/Sources/Plasma/CoreLib/HeadSpin.cpp index a5a9464c..d3e5a7d1 100644 --- a/Sources/Plasma/CoreLib/HeadSpin.cpp +++ b/Sources/Plasma/CoreLib/HeadSpin.cpp @@ -96,7 +96,7 @@ void hsDebugMessage (const char message[], long val) { OutputDebugString(&s[1]); OutputDebugString("\n"); } -#elif (HS_BUILD_FOR_BE || HS_BUILD_FOR_UNIX ) +#elif HS_BUILD_FOR_UNIX { fprintf(stderr, "%s\n", &s[1]); // hsThrow(&s[1]); } diff --git a/Sources/Plasma/CoreLib/hsMMIOStream.h b/Sources/Plasma/CoreLib/hsMMIOStream.h index 83315758..50e28a53 100644 --- a/Sources/Plasma/CoreLib/hsMMIOStream.h +++ b/Sources/Plasma/CoreLib/hsMMIOStream.h @@ -31,7 +31,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #if HS_BUILD_FOR_WIN32 #include -#endif class hsMMIOStream: public hsStream { @@ -52,5 +51,6 @@ public: HMMIO GetHandle() { return fHmfr; } void SetHandle(HMMIO handle) { fHmfr = handle; } }; +#endif #endif // hsMMIOStream_inc