diff options
author | Einar Johan Trøan Sømåen | 2012-07-21 18:19:07 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-07-21 19:15:33 +0200 |
commit | 5683f076331d2831eb4720b65bb53e8d01ca33ee (patch) | |
tree | 4357d989476643db887d5f5a95f6fd165afd0514 /engines/wintermute/math | |
parent | 0622b2c5b8260c0f0c01122d6fbc5e10013d1613 (diff) | |
download | scummvm-rg350-5683f076331d2831eb4720b65bb53e8d01ca33ee.tar.gz scummvm-rg350-5683f076331d2831eb4720b65bb53e8d01ca33ee.tar.bz2 scummvm-rg350-5683f076331d2831eb4720b65bb53e8d01ca33ee.zip |
WINTERMUTE: Rename CamelCased filenames to prefixed_under_score-filenames
This is mostly a lead-up to namespacing the Ad/Base folders, and then
possibly removing the prefixes from the files, it also has the added
benefit of getting rid of the odd case-typos that makes for issues
on platforms that don't ignore case.
Diffstat (limited to 'engines/wintermute/math')
-rw-r--r-- | engines/wintermute/math/math_util.cpp (renamed from engines/wintermute/math/MathUtil.cpp) | 2 | ||||
-rw-r--r-- | engines/wintermute/math/math_util.h (renamed from engines/wintermute/math/MathUtil.h) | 0 | ||||
-rw-r--r-- | engines/wintermute/math/matrix4.cpp (renamed from engines/wintermute/math/Matrix4.cpp) | 4 | ||||
-rw-r--r-- | engines/wintermute/math/matrix4.h (renamed from engines/wintermute/math/Matrix4.h) | 0 | ||||
-rw-r--r-- | engines/wintermute/math/rect32.h (renamed from engines/wintermute/math/Rect32.h) | 0 | ||||
-rw-r--r-- | engines/wintermute/math/vector2.cpp (renamed from engines/wintermute/math/Vector2.cpp) | 2 | ||||
-rw-r--r-- | engines/wintermute/math/vector2.h (renamed from engines/wintermute/math/Vector2.h) | 0 |
7 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/math/MathUtil.cpp b/engines/wintermute/math/math_util.cpp index 47b472d9cf..d9449294fb 100644 --- a/engines/wintermute/math/MathUtil.cpp +++ b/engines/wintermute/math/math_util.cpp @@ -26,7 +26,7 @@ * Copyright (c) 2011 Jan Nedoma
*/
-#include "MathUtil.h"
+#include "engines/wintermute/math/math_util.h"
#include <cmath>
namespace WinterMute {
diff --git a/engines/wintermute/math/MathUtil.h b/engines/wintermute/math/math_util.h index db814a59ac..db814a59ac 100644 --- a/engines/wintermute/math/MathUtil.h +++ b/engines/wintermute/math/math_util.h diff --git a/engines/wintermute/math/Matrix4.cpp b/engines/wintermute/math/matrix4.cpp index 557f0d5c9a..a716e937f4 100644 --- a/engines/wintermute/math/Matrix4.cpp +++ b/engines/wintermute/math/matrix4.cpp @@ -26,8 +26,8 @@ * Copyright (c) 2011 Jan Nedoma
*/
-#include "engines/wintermute/math/Matrix4.h"
-#include "engines/wintermute/math/Vector2.h"
+#include "engines/wintermute/math/matrix4.h"
+#include "engines/wintermute/math/vector2.h"
#include <math.h>
namespace WinterMute {
diff --git a/engines/wintermute/math/Matrix4.h b/engines/wintermute/math/matrix4.h index 5def8dfe97..5def8dfe97 100644 --- a/engines/wintermute/math/Matrix4.h +++ b/engines/wintermute/math/matrix4.h diff --git a/engines/wintermute/math/Rect32.h b/engines/wintermute/math/rect32.h index e0babcbbb9..e0babcbbb9 100644 --- a/engines/wintermute/math/Rect32.h +++ b/engines/wintermute/math/rect32.h diff --git a/engines/wintermute/math/Vector2.cpp b/engines/wintermute/math/vector2.cpp index 8bd10320a8..9906a59429 100644 --- a/engines/wintermute/math/Vector2.cpp +++ b/engines/wintermute/math/vector2.cpp @@ -26,7 +26,7 @@ * Copyright (c) 2011 Jan Nedoma
*/
-#include "Vector2.h"
+#include "engines/wintermute/math/vector2.h"
#include <math.h>
namespace WinterMute {
diff --git a/engines/wintermute/math/Vector2.h b/engines/wintermute/math/vector2.h index 96d3a3827d..96d3a3827d 100644 --- a/engines/wintermute/math/Vector2.h +++ b/engines/wintermute/math/vector2.h |