--- games/el/files/patch-icon__window.cpp (nonexistent) +++ games/el/files/patch-icon__window.cpp (working copy) @@ -0,0 +1,11 @@ +--- icon_window.cpp.orig 2014-01-06 13:53:40 UTC ++++ icon_window.cpp +@@ -358,7 +358,7 @@ namespace IconWindow + size_t index = (has_highlight)? 1: 0; + if (flashing) + { +- if (abs(SDL_GetTicks() - last_flash_change) > 250) ++ if (abs((Sint32)(SDL_GetTicks() - last_flash_change)) > 250) + { + last_flash_change = SDL_GetTicks(); + flashing--; --- games/el/files/patch-item__lists.cpp (nonexistent) +++ games/el/files/patch-item__lists.cpp (working copy) @@ -0,0 +1,11 @@ +--- item_lists.cpp.orig 2014-01-06 13:53:40 UTC ++++ item_lists.cpp +@@ -796,7 +796,7 @@ namespace ItemLists + { + if (!last_mod_time) + return; +- if (force || (last_mod_time && abs(last_mod_time - SDL_GetTicks()) > 5000)) ++ if (force || (last_mod_time && abs((Sint32)(last_mod_time - SDL_GetTicks())) > 5000)) + save(); + } + --- games/el/files/patch-quest__log.cpp (nonexistent) +++ games/el/files/patch-quest__log.cpp (working copy) @@ -0,0 +1,11 @@ +--- quest_log.cpp.orig 2014-01-06 13:53:40 UTC ++++ quest_log.cpp +@@ -85,7 +85,7 @@ class Quest_Title_Request + Uint16 get_id(void) const { return id; } + void request(void); + bool been_requested(void) const { return requested; } +- bool is_too_old(void) const { return (abs(SDL_GetTicks() - request_time) > 5000); } ++ bool is_too_old(void) const { return (abs((Sint32)(SDL_GetTicks() - request_time)) > 5000); } + private: + Uint16 id; + Uint32 request_time;