Browse Source

Fix some more ifdefs.

Darryl Pogue 13 years ago
parent
commit
f9381e7297
  1. 2
      Sources/Plasma/CoreLib/HeadSpin.cpp
  2. 2
      Sources/Plasma/CoreLib/hsMMIOStream.h

2
Sources/Plasma/CoreLib/HeadSpin.cpp

@ -96,7 +96,7 @@ void hsDebugMessage (const char message[], long val)
{ OutputDebugString(&s[1]); { OutputDebugString(&s[1]);
OutputDebugString("\n"); OutputDebugString("\n");
} }
#elif (HS_BUILD_FOR_BE || HS_BUILD_FOR_UNIX ) #elif HS_BUILD_FOR_UNIX
{ fprintf(stderr, "%s\n", &s[1]); { fprintf(stderr, "%s\n", &s[1]);
// hsThrow(&s[1]); // hsThrow(&s[1]);
} }

2
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 #if HS_BUILD_FOR_WIN32
#include <mmsystem.h> #include <mmsystem.h>
#endif
class hsMMIOStream: public hsStream class hsMMIOStream: public hsStream
{ {
@ -52,5 +51,6 @@ public:
HMMIO GetHandle() { return fHmfr; } HMMIO GetHandle() { return fHmfr; }
void SetHandle(HMMIO handle) { fHmfr = handle; } void SetHandle(HMMIO handle) { fHmfr = handle; }
}; };
#endif
#endif // hsMMIOStream_inc #endif // hsMMIOStream_inc

Loading…
Cancel
Save