diff options
author | Tobia Tesan | 2013-06-27 15:47:05 +0200 |
---|---|---|
committer | Tobia Tesan | 2013-07-31 23:47:57 +0200 |
commit | 3c0089e31e1392f38cfb0e13d7c4d395bad4f949 (patch) | |
tree | dd4b8f89e328a6c37f9b1d392bca535230562f94 /engines/wintermute/math | |
parent | 03c4b7a240d53b36c86aea564fb8ae0b0a747604 (diff) | |
download | scummvm-rg350-3c0089e31e1392f38cfb0e13d7c4d395bad4f949.tar.gz scummvm-rg350-3c0089e31e1392f38cfb0e13d7c4d395bad4f949.tar.bz2 scummvm-rg350-3c0089e31e1392f38cfb0e13d7c4d395bad4f949.zip |
WINTERMUTE: Introduce TransformTools
Diffstat (limited to 'engines/wintermute/math')
-rw-r--r-- | engines/wintermute/math/floatpoint.h (renamed from engines/wintermute/math/floatrect.h) | 4 | ||||
-rw-r--r-- | engines/wintermute/math/rect32.h | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/engines/wintermute/math/floatrect.h b/engines/wintermute/math/floatpoint.h index f8eb3827fd..bf194d8437 100644 --- a/engines/wintermute/math/floatrect.h +++ b/engines/wintermute/math/floatpoint.h @@ -20,8 +20,8 @@ * */ -#ifndef WINTERMUTE_FLOATRECT_H -#define WINTERMUTE_FLOATRECT_H +#ifndef WINTERMUTE_FLOATPOINT_H +#define WINTERMUTE_FLOATPOINT_H namespace Wintermute { diff --git a/engines/wintermute/math/rect32.h b/engines/wintermute/math/rect32.h index 6618a51e91..d44655311c 100644 --- a/engines/wintermute/math/rect32.h +++ b/engines/wintermute/math/rect32.h @@ -24,7 +24,8 @@ #define WINTERMUTE_RECT32_H #include "common/system.h" -#include "engines/wintermute/math/floatrect.h" +#include "engines/wintermute/math/floatpoint.h" +#include "common/rect.h" namespace Wintermute { |