1
0
Fork 0

(svn r9081) -Fix(r9080): UINT32_MAX is undefined on MSVC. Use std::numeric_limits<uint32>::max() instead.

release/0.6
KUDr 2007-03-09 23:26:21 +00:00
parent fe2b3e18fb
commit 933c406678
2 changed files with 4 additions and 2 deletions

View File

@ -269,7 +269,7 @@ static void SortStationsList(plstations_d *sl)
sl->flags &= ~SL_RESORT;
}
static uint32 _cargo_filter = UINT32_MAX;
static uint32 _cargo_filter = std::numeric_limits<uint32>::max();
static void PlayerStationsWndProc(Window *w, WindowEvent *e)
{
@ -282,7 +282,7 @@ static void PlayerStationsWndProc(Window *w, WindowEvent *e)
switch (e->event) {
case WE_CREATE: /* set up resort timer */
if (_cargo_filter == UINT32_MAX) _cargo_filter = _cargo_mask;
if (_cargo_filter == std::numeric_limits<uint32>::max()) _cargo_filter = _cargo_mask;
for (uint i = 0; i < 5; i++) {
if (HASBIT(facilities, i)) LowerWindowWidget(w, i + STATIONLIST_WIDGET_TRAIN);

View File

@ -20,6 +20,8 @@
# define INT64_MAX 9223372036854775807LL
#endif
#include <limits>
#include <cstdio>
#include <cstddef>
#include <cstring>