aboutsummaryrefslogtreecommitdiff
path: root/simon/simon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'simon/simon.cpp')
-rw-r--r--simon/simon.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index 4a1e01b199..c26f84f689 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -67,11 +67,13 @@ const TargetSettings *Engine_SIMON_targetList() {
}
Engine *Engine_SIMON_create(GameDetector *detector, OSystem *syst) {
- return new SimonEngine(detector, syst);
+ return new Simon::SimonEngine(detector, syst);
}
REGISTER_PLUGIN("Simon the Sorcerer", Engine_SIMON_targetList, Engine_SIMON_create);
+namespace Simon {
+
static const GameSpecificSettings simon1_settings = {
1, // VGA_DELAY_BASE
1576 / 4, // TABLE_INDEX_BASE
@@ -5064,3 +5066,5 @@ void SimonEngine::set_volume(byte volume) {
byte SimonEngine::getByte() {
return *_code_ptr++;
}
+
+} // End of namespace Simon