summaryrefslogtreecommitdiff
path: root/Source/Core/Common
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Common')
-rw-r--r--Source/Core/Common/Src/LogManager.cpp4
-rw-r--r--Source/Core/Common/Src/LogManager.h2
-rw-r--r--Source/Core/Common/Src/SysConf.cpp8
-rw-r--r--Source/Core/Common/Src/SysConf.h2
4 files changed, 0 insertions, 16 deletions
diff --git a/Source/Core/Common/Src/LogManager.cpp b/Source/Core/Common/Src/LogManager.cpp
index e613f2763d..2abf20b2f3 100644
--- a/Source/Core/Common/Src/LogManager.cpp
+++ b/Source/Core/Common/Src/LogManager.cpp
@@ -192,10 +192,6 @@ FileLogListener::FileLogListener(const char *filename) {
setEnable(true);
}
-void FileLogListener::Reload() {
- m_logfile = fopen(m_filename, "a+");
-}
-
FileLogListener::~FileLogListener() {
free(m_filename);
if (m_logfile)
diff --git a/Source/Core/Common/Src/LogManager.h b/Source/Core/Common/Src/LogManager.h
index eb5b7edff1..9b91e189de 100644
--- a/Source/Core/Common/Src/LogManager.h
+++ b/Source/Core/Common/Src/LogManager.h
@@ -42,8 +42,6 @@ public:
FileLogListener(const char *filename);
~FileLogListener();
- void Reload();
-
void Log(LogTypes::LOG_LEVELS, const char *msg);
bool isValid() {
diff --git a/Source/Core/Common/Src/SysConf.cpp b/Source/Core/Common/Src/SysConf.cpp
index 18a3669210..dbac407dc7 100644
--- a/Source/Core/Common/Src/SysConf.cpp
+++ b/Source/Core/Common/Src/SysConf.cpp
@@ -25,14 +25,6 @@ SysConf::SysConf()
m_IsValid = true;
}
-void SysConf::Reload()
-{
- if (m_IsValid)
- return;
- if (LoadFromFile(File::GetUserPath(F_WIISYSCONF_IDX)))
- m_IsValid = true;
-}
-
SysConf::~SysConf()
{
if (!m_IsValid)
diff --git a/Source/Core/Common/Src/SysConf.h b/Source/Core/Common/Src/SysConf.h
index 5d7c50007e..c2db94fa3b 100644
--- a/Source/Core/Common/Src/SysConf.h
+++ b/Source/Core/Common/Src/SysConf.h
@@ -71,8 +71,6 @@ public:
bool IsValid() { return m_IsValid; }
- void Reload();
-
template<class T>
T GetData(const char* sectionName)
{