aboutsummaryrefslogtreecommitdiff
path: root/sword2/driver/keyboard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sword2/driver/keyboard.cpp')
-rw-r--r--sword2/driver/keyboard.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/sword2/driver/keyboard.cpp b/sword2/driver/keyboard.cpp
index b9aef1425c..609d0a75c5 100644
--- a/sword2/driver/keyboard.cpp
+++ b/sword2/driver/keyboard.cpp
@@ -18,7 +18,9 @@
*/
#include "stdafx.h"
-#include "driver96.h"
+#include "bs2/driver/driver96.h"
+
+namespace Sword2 {
uint8 keyBacklog = 0; // The number of key presses waiting to be processed.
uint8 keyPointer = 0; // Index of the next key to read from the buffer.
@@ -69,3 +71,5 @@ int32 ReadKey(_keyboardEvent *ev) {
return RD_OK;
}
+
+} // End of namespace Sword2