aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl/switch/switch.cpp
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/switch/switch.cpp
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/switch/switch.cpp')
-rw-r--r--backends/platform/sdl/switch/switch.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/backends/platform/sdl/switch/switch.cpp b/backends/platform/sdl/switch/switch.cpp
index 1a3c573608..120fb955fb 100644
--- a/backends/platform/sdl/switch/switch.cpp
+++ b/backends/platform/sdl/switch/switch.cpp
@@ -30,10 +30,6 @@
#include "backends/fs/posix/posix-fs-factory.h"
#include "backends/fs/posix/posix-fs.h"
-OSystem_Switch::OSystem_Switch(Common::String baseConfigName)
- : _baseConfigName(baseConfigName) {
-}
-
void OSystem_Switch::init() {
// Initialze File System Factory
@@ -126,10 +122,6 @@ void OSystem_Switch::logMessage(LogMessageType::Type type, const char *message)
printf("%s\n", message);
}
-Common::String OSystem_Switch::getDefaultConfigFileName() {
- return _baseConfigName;
-}
-
Common::String OSystem_Switch::getDefaultLogFileName() {
return "scummvm.log";
}