aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl/switch/switch.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/sdl/switch/switch.h')
-rw-r--r--backends/platform/sdl/switch/switch.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/backends/platform/sdl/switch/switch.h b/backends/platform/sdl/switch/switch.h
index 61b4f3c058..2bdea6fe09 100644
--- a/backends/platform/sdl/switch/switch.h
+++ b/backends/platform/sdl/switch/switch.h
@@ -27,10 +27,6 @@
class OSystem_Switch : public OSystem_SDL {
public:
- // Let the subclasses be able to change _baseConfigName in the constructor
- OSystem_Switch(Common::String baseConfigName = "scummvm.ini");
- virtual ~OSystem_Switch() {}
-
virtual void init() override;
virtual void initBackend() override;
virtual bool hasFeature(Feature f) override;
@@ -39,11 +35,6 @@ public:
virtual void logMessage(LogMessageType::Type type, const char *message) override;
protected:
- // Base string for creating the default path and filename
- // for the configuration file
- Common::String _baseConfigName;
-
- virtual Common::String getDefaultConfigFileName() override;
virtual Common::String getDefaultLogFileName() override;
};