diff options
author | chirs241097@gmail.com <chirs241097@gmail.com@c17bf020-1265-9734-9302-a83f62007ddb> | 2014-03-21 13:17:10 +0000 |
---|---|---|
committer | chirs241097@gmail.com <chirs241097@gmail.com@c17bf020-1265-9734-9302-a83f62007ddb> | 2014-03-21 13:17:10 +0000 |
commit | c28783ee430b106b636bf636bddf0799126a19d5 (patch) | |
tree | 84752719e337f76093654c501ad5e44c80916ce6 /hgehelp | |
parent | 614da8c13f4711337828a3b017d86002c6ea1292 (diff) | |
download | bullet-lab-remix-c28783ee430b106b636bf636bddf0799126a19d5.tar.xz |
Experimental support for cross compiling with mingw-w64.
Fix blinking HangUpText.
Exit 1 if not terminated correctly.
Diffstat (limited to 'hgehelp')
-rw-r--r-- | hgehelp/hgeguictrls.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hgehelp/hgeguictrls.cpp b/hgehelp/hgeguictrls.cpp index a02e18f..4319491 100644 --- a/hgehelp/hgeguictrls.cpp +++ b/hgehelp/hgeguictrls.cpp @@ -12,7 +12,8 @@ #include <stdio.h> #include <stdlib.h> - +#define min(a,b) ((a)<(b)?(a):(b)) +#define max(a,b) ((a)>(b)?(a):(b)) /* ** hgeGUIText */ |