From 210040d4df159a14e61595152faba5939a512f09 Mon Sep 17 00:00:00 2001 From: hanabbi Date: Sun, 16 Apr 2023 14:57:27 +0900 Subject: [PATCH] fix(sys-clk-oc): temporary fix sysmodule not starting fix 'cannot create directory' by remove call to mkdir in config in sysmodule --- Source/sys-clk-OC/sysmodule/src/config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/sys-clk-OC/sysmodule/src/config.cpp b/Source/sys-clk-OC/sysmodule/src/config.cpp index 7edad8e5..966b06f0 100644 --- a/Source/sys-clk-OC/sysmodule/src/config.cpp +++ b/Source/sys-clk-OC/sysmodule/src/config.cpp @@ -47,8 +47,8 @@ Config::~Config() Config *Config::CreateDefault() { - if (R_FAILED(FileUtils::mkdir_p(FILE_CONFIG_DIR))) - ERROR_THROW("Cannot create " FILE_CONFIG_DIR); + //if (R_FAILED(FileUtils::mkdir_p(FILE_CONFIG_DIR))) + // ERROR_THROW("Cannot create " FILE_CONFIG_DIR); return new Config(FILE_CONFIG_DIR "/config.ini"); }