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("\n");
}
#elif (HS_BUILD_FOR_BE || HS_BUILD_FOR_UNIX )
#elif HS_BUILD_FOR_UNIX
{ fprintf(stderr, "%s\n", &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
#include <mmsystem.h>
#endif
class hsMMIOStream: public hsStream
{
@ -52,5 +51,6 @@ public:
HMMIO GetHandle() { return fHmfr; }
void SetHandle(HMMIO handle) { fHmfr = handle; }
};
#endif
#endif // hsMMIOStream_inc

Loading…
Cancel
Save