aboutsummaryrefslogtreecommitdiff
path: root/sky/sky.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sky/sky.cpp')
-rw-r--r--sky/sky.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/sky/sky.cpp b/sky/sky.cpp
index e4160f97e9..bd9f748b88 100644
--- a/sky/sky.cpp
+++ b/sky/sky.cpp
@@ -103,11 +103,14 @@ DetectedGameList Engine_SKY_detectGames(const FSList &fslist) {
}
Engine *Engine_SKY_create(GameDetector *detector, OSystem *syst) {
- return new SkyEngine(detector, syst);
+ return new Sky::SkyEngine(detector, syst);
}
REGISTER_PLUGIN("Beneath a Steel Sky", Engine_SKY_gameList, Engine_SKY_create, Engine_SKY_detectGames)
+
+namespace Sky {
+
void **SkyEngine::_itemList[300];
SystemVars SkyEngine::_systemVars = {0, 0, 0, 0, 4316, 0, 0, false, false };
@@ -538,3 +541,4 @@ bool SkyEngine::isCDVersion(void) {
}
}
+} // End of namespace Sky