aboutsummaryrefslogtreecommitdiff
path: root/sword2/driver/_mouse.cpp
diff options
context:
space:
mode:
authorMax Horn2003-10-04 00:52:27 +0000
committerMax Horn2003-10-04 00:52:27 +0000
commit5a074e6137dc8368132e4e192c018806c1723222 (patch)
tree222778195b0abbd5698e6decbccfc99ed4f2f894 /sword2/driver/_mouse.cpp
parent68d923505efb9cb45366b0528f8bf039c1b18902 (diff)
downloadscummvm-rg350-5a074e6137dc8368132e4e192c018806c1723222.tar.gz
scummvm-rg350-5a074e6137dc8368132e4e192c018806c1723222.tar.bz2
scummvm-rg350-5a074e6137dc8368132e4e192c018806c1723222.zip
added namespace Sword2
svn-id: r10581
Diffstat (limited to 'sword2/driver/_mouse.cpp')
-rw-r--r--sword2/driver/_mouse.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/sword2/driver/_mouse.cpp b/sword2/driver/_mouse.cpp
index 3c1d94e17a..dbd0632e68 100644
--- a/sword2/driver/_mouse.cpp
+++ b/sword2/driver/_mouse.cpp
@@ -18,11 +18,13 @@
*/
#include "stdafx.h"
-#include "driver96.h"
-#include "d_draw.h"
-#include "render.h"
-#include "menu.h"
-#include "../sword2.h"
+#include "bs2/driver/driver96.h"
+#include "bs2/driver/d_draw.h"
+#include "bs2/driver/render.h"
+#include "bs2/driver/menu.h"
+#include "bs2/sword2.h"
+
+namespace Sword2 {
#define MAX_MOUSE_EVENTS 16
#define MOUSEFLASHFRAME 6
@@ -312,3 +314,5 @@ int32 SetLuggageAnim(uint8 *ma, int32 size) {
return RD_OK;
}
+
+} // End of namespace Sword2