1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 19:29:09 +00:00

Some cross-platform MinGW/gcc fixes.

This commit is contained in:
Darryl Pogue
2015-02-08 23:24:23 -08:00
parent 8010f5d051
commit 79a470d31c
3 changed files with 6 additions and 3 deletions

View File

@ -325,7 +325,10 @@ uint32_t plSecureStream::IRead(uint32_t bytes, void* buffer)
}
else
{
// TODO: errno equivalent for *nix
#if HS_BUILD_FOR_WIN32
hsDebugMessage("Error on Windows read", GetLastError());
#endif
}
}
return numItems;