From 1af858466684d0e7c4f23389a5433aa8741592fa Mon Sep 17 00:00:00 2001 From: Cameron Cawley Date: Sun, 3 Nov 2019 22:43:08 +0000 Subject: GPH/OPENPANDORA: Remove unnecessary stat() calls Since commit 04c57ba, this should no longer be necessary. --- backends/platform/gph/gph-backend.cpp | 11 ----------- backends/platform/openpandora/op-backend.cpp | 11 ----------- 2 files changed, 22 deletions(-) (limited to 'backends') diff --git a/backends/platform/gph/gph-backend.cpp b/backends/platform/gph/gph-backend.cpp index 96f42627b5..3a5180149f 100644 --- a/backends/platform/gph/gph-backend.cpp +++ b/backends/platform/gph/gph-backend.cpp @@ -43,13 +43,8 @@ #include "audio/mixer_intern.h" -#include -#include #include #include -#include -#include -#include // for getTimeAndDate() /* Dump console info to files. */ #define DUMP_STDOUT @@ -77,12 +72,6 @@ void OSystem_GPH::initBackend() { strcpy(savePath, workDirName); strcat(savePath, "/saves"); printf("Current save directory: %s\n", savePath); - struct stat sb; - if (stat(savePath, &sb) == -1) - if (errno == ENOENT) // Create the dir if it does not exist - if (mkdir(savePath, 0755) != 0) - warning("mkdir for '%s' failed!", savePath); - _savefileManager = new DefaultSaveFileManager(savePath); #ifdef DUMP_STDOUT diff --git a/backends/platform/openpandora/op-backend.cpp b/backends/platform/openpandora/op-backend.cpp index 0d81ef8755..1d620ff73b 100644 --- a/backends/platform/openpandora/op-backend.cpp +++ b/backends/platform/openpandora/op-backend.cpp @@ -42,13 +42,8 @@ #include "audio/mixer_intern.h" -#include -#include #include #include -#include -#include -#include // for getTimeAndDate() /* Dump console info to files. */ #define DUMP_STDOUT @@ -76,12 +71,6 @@ void OSystem_OP::initBackend() { strcpy(savePath, workDirName); strcat(savePath, "/../saves"); printf("Current save directory: %s\n", savePath); - struct stat sb; - if (stat(savePath, &sb) == -1) - if (errno == ENOENT) // Create the dir if it does not exist - if (mkdir(savePath, 0755) != 0) - warning("mkdir for '%s' failed!", savePath); - _savefileManager = new DefaultSaveFileManager(savePath); #ifdef DUMP_STDOUT -- cgit v1.2.3