summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.cc
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-13 21:57:17 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-13 21:57:17 -0700
commit27fdc593f2bca7c51edab41d2bf8dbc166ef2ac4 (patch)
treec80b39e32d9fc08b254acf606b31eba23cd13a24 /crawl-ref/source/view.cc
parentcafb25aa34acb123ce93e7c7b35646744564f2c0 (diff)
downloadcrawl-ref-27fdc593f2bca7c51edab41d2bf8dbc166ef2ac4.tar.gz
crawl-ref-27fdc593f2bca7c51edab41d2bf8dbc166ef2ac4.zip
view.cc: fix "'uint32_t' was not declared in this scope" error
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/view.cc')
-rw-r--r--crawl-ref/source/view.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index 99f5a20707..041e686705 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -9,6 +9,7 @@ REVISION("$Rev$");
#include "view.h"
+#include <stdint.h>
#include <string.h>
#include <cmath>
#include <sstream>