aboutsummaryrefslogtreecommitdiff
path: root/engines/startrek/common.h
diff options
context:
space:
mode:
authorMatthew Stewart2018-07-18 23:53:21 -0400
committerEugene Sandulenko2018-08-09 08:37:30 +0200
commitac9cd1f00a28b09dd0202c90a2fe023bc8cba525 (patch)
treebb3666dcdc40ab72f6e6917c8de1881d40b65ab2 /engines/startrek/common.h
parenta024a3fd4501a0ab41ffdd62f65914f2307bdf22 (diff)
downloadscummvm-rg350-ac9cd1f00a28b09dd0202c90a2fe023bc8cba525.tar.gz
scummvm-rg350-ac9cd1f00a28b09dd0202c90a2fe023bc8cba525.tar.bz2
scummvm-rg350-ac9cd1f00a28b09dd0202c90a2fe023bc8cba525.zip
STARTREK: Implement fixed-point decimal class
Diffstat (limited to 'engines/startrek/common.h')
-rw-r--r--engines/startrek/common.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/engines/startrek/common.h b/engines/startrek/common.h
index d76ef66c28..290772f4a1 100644
--- a/engines/startrek/common.h
+++ b/engines/startrek/common.h
@@ -23,6 +23,7 @@
#define STARTREK_COMMON_H
#include "common/scummsys.h"
+#include "common/textconsole.h"
namespace Common {
struct Rect;
@@ -41,12 +42,6 @@ Common::Rect getRectEncompassing(Common::Rect r1, Common::Rect r2);
void serializeRect(Common::Rect rect, Common::Serializer &ser);
-// Fixed-point (16.16) number
-typedef int32 Fixed32;
-
-// Fixed-point (8.8) number
-typedef int16 Fixed16;
-
}
#endif