mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-18 12:33:17 +01:00
Remove Exception::GetMsg()
We can undef any macro windows.h defines and interferes with our code base. In this case GetMessage
This commit is contained in:
@@ -28,6 +28,7 @@
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>
|
||||
|
||||
#undef GetMessage
|
||||
#define LAST_SOCKET_ERROR() WSAGetLastError()
|
||||
#undef EWOULDBLOCK
|
||||
#define EWOULDBLOCK WSAEWOULDBLOCK
|
||||
@@ -321,7 +322,7 @@ public:
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
req->Socket->_error = std::string(ex.GetMsg());
|
||||
req->Socket->_error = std::string(ex.GetMessage());
|
||||
}
|
||||
|
||||
SDL_UnlockMutex(req->Socket->_connectMutex);
|
||||
|
||||
Reference in New Issue
Block a user