aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl/posix/posix.h
diff options
context:
space:
mode:
authorCameron Cawley2019-12-07 14:08:33 +0000
committerFilippos Karapetis2019-12-07 21:15:41 +0200
commitaa083256ec05ee43d9f1977ca2178cacdfb25ae3 (patch)
treeeaaf0b2788921203c0d0487bcedf4ceb2d5e54ed /backends/platform/sdl/posix/posix.h
parentc90164f526b506a59092b48bcf78838777b68544 (diff)
downloadscummvm-rg350-aa083256ec05ee43d9f1977ca2178cacdfb25ae3.tar.gz
scummvm-rg350-aa083256ec05ee43d9f1977ca2178cacdfb25ae3.tar.bz2
scummvm-rg350-aa083256ec05ee43d9f1977ca2178cacdfb25ae3.zip
SDL: Simplify implementations of getDefaultConfigFileName()
Diffstat (limited to 'backends/platform/sdl/posix/posix.h')
-rw-r--r--backends/platform/sdl/posix/posix.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/backends/platform/sdl/posix/posix.h b/backends/platform/sdl/posix/posix.h
index 5df6738d45..41fdc35c99 100644
--- a/backends/platform/sdl/posix/posix.h
+++ b/backends/platform/sdl/posix/posix.h
@@ -27,10 +27,6 @@
class OSystem_POSIX : public OSystem_SDL {
public:
- // Let the subclasses be able to change _baseConfigName in the constructor
- OSystem_POSIX(Common::String baseConfigName = "scummvm.ini");
- virtual ~OSystem_POSIX() {}
-
virtual bool hasFeature(Feature f);
virtual bool displayLogFile();
@@ -45,13 +41,6 @@ public:
Common::String getScreenshotsPath() override;
protected:
- /**
- * Base string for creating the default path and filename for the
- * configuration file. This allows the Mac OS X subclass to override
- * the config file path and name.
- */
- Common::String _baseConfigName;
-
virtual Common::String getDefaultConfigFileName();
virtual Common::String getDefaultLogFileName();