diff options
author | Peter BozsoĢ | 2016-06-11 11:18:13 +0200 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | a966de42a97dff932b6292f5021b7eb278310d1d (patch) | |
tree | 3e88de67972b2ce9580d4898382d7e34c4f7740d /backends/cloud | |
parent | a651a983dd75c1b775c1a633b22831812f780b65 (diff) | |
download | scummvm-rg350-a966de42a97dff932b6292f5021b7eb278310d1d.tar.gz scummvm-rg350-a966de42a97dff932b6292f5021b7eb278310d1d.tar.bz2 scummvm-rg350-a966de42a97dff932b6292f5021b7eb278310d1d.zip |
CLOUD: Fix compilation error in savesyncrequest.h
"savessyncrequest.h:35:35: error: use of undeclared identifier 'UINT_MAX'"
Diffstat (limited to 'backends/cloud')
-rw-r--r-- | backends/cloud/savessyncrequest.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/cloud/savessyncrequest.h b/backends/cloud/savessyncrequest.h index 1a615e80a1..105d7f7f65 100644 --- a/backends/cloud/savessyncrequest.h +++ b/backends/cloud/savessyncrequest.h @@ -28,6 +28,7 @@ #include "common/hashmap.h" #include "common/hash-str.h" #include "gui/object.h" +#include <limits.h> namespace Cloud { |