diff --git a/loader/src/settings/CSettings.cpp b/loader/src/settings/CSettings.cpp index 2dbb4b2..f7e0a82 100644 --- a/loader/src/settings/CSettings.cpp +++ b/loader/src/settings/CSettings.cpp @@ -20,7 +20,6 @@ #include "common/common.h" #include "CSettings.h" -#include "SettingsEnums.h" #include #include #include diff --git a/loader/src/settings/CSettings.h b/loader/src/settings/CSettings.h index 1336d32..ddbc1e6 100644 --- a/loader/src/settings/CSettings.h +++ b/loader/src/settings/CSettings.h @@ -23,7 +23,6 @@ #include #include #include -#include "SettingsEnums.h" class CSettings { public: diff --git a/loader/src/settings/SettingsDefs.h b/loader/src/settings/SettingsDefs.h deleted file mode 100644 index 04ee6b1..0000000 --- a/loader/src/settings/SettingsDefs.h +++ /dev/null @@ -1,34 +0,0 @@ -/**************************************************************************** - * Copyright (C) 2015 Dimok - * - * Modified by Maschell, 2018 for WiiU plugin system loader - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - ****************************************************************************/ -#ifndef __SETTINGS_DEFS_ -#define __SETTINGS_DEFS_ - -typedef struct { - int32_t value; - const char *name; -} ValueString; - -typedef struct { - const char *name; - const ValueString *valueStrings; - int32_t type; - int32_t index; -} SettingType; - -#endif // __SETTINGS_DEFS_ diff --git a/loader/src/settings/SettingsEnums.h b/loader/src/settings/SettingsEnums.h deleted file mode 100644 index 3420457..0000000 --- a/loader/src/settings/SettingsEnums.h +++ /dev/null @@ -1,9 +0,0 @@ -#ifndef SETTINGS_ENUMS_H_ -#define SETTINGS_ENUMS_H_ - -enum eOnOff { - SETTING_OFF, - SETTING_ON -}; - -#endif // SETTINGS_ENUMS_H_