mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 16:18:58 +00:00
InputCommon: Rename class InputPlugin to InputConfig
This commit is contained in:
parent
ea7eee1f58
commit
1a3ebbb831
12 changed files with 85 additions and 88 deletions
|
@ -14,17 +14,14 @@
|
|||
#include "InputCommon/ControllerEmu.h"
|
||||
#include "InputCommon/ControllerInterface/ControllerInterface.h"
|
||||
|
||||
// InputPlugin isn't a very good name anymore since it's used by GCPad/Wiimote
|
||||
// which are not even plugins anymore.
|
||||
class InputPlugin
|
||||
class InputConfig
|
||||
{
|
||||
public:
|
||||
|
||||
InputPlugin(const char* const _ini_name, const char* const _gui_name,
|
||||
InputConfig(const char* const _ini_name, const char* const _gui_name,
|
||||
const char* const _profile_name)
|
||||
: ini_name(_ini_name), gui_name(_gui_name), profile_name(_profile_name) {}
|
||||
|
||||
~InputPlugin();
|
||||
~InputConfig();
|
||||
|
||||
bool LoadConfig(bool isGC);
|
||||
void SaveConfig();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue