1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Fix warnings on windows build

This commit is contained in:
Mathieu Schroeter 2017-08-21 22:14:00 +02:00
parent 8cd1cacb89
commit 25641ac20e

View File

@ -53,6 +53,8 @@ typedef Uint32 WPARAM;
typedef Sint32 LPARAM;
#endif
#undef LOWORD
#undef HIWORD
#define LOWORD(l) ((Uint16) (((Uint32) (l)) & 0xffff))
#define HIWORD(l) ((Uint16) ((((Uint32) (l)) >> 16) & 0xffff))