aboutsummaryrefslogtreecommitdiff
path: root/common/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/system.h')
-rw-r--r--common/system.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/common/system.h b/common/system.h
index 0be620b788..3566f5ea14 100644
--- a/common/system.h
+++ b/common/system.h
@@ -29,10 +29,12 @@
#include "common/singleton.h"
namespace Graphics {
-struct Surface;
-} // end of namespace Graphics
+ struct Surface;
+}
-class SaveFileManager;
+namespace Common {
+ class SaveFileManager;
+}
/**
* Interface for ScummVM backends. If you want to port ScummVM to a system
@@ -897,7 +899,7 @@ public:
virtual void displayMessageOnOSD(const char *msg);
/** Savefile management. */
- virtual SaveFileManager *getSavefileManager();
+ virtual Common::SaveFileManager *getSavefileManager();
//@}
};