mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 13:49:53 -06:00
Light cleanup to a little bit of InputCommon. Replaces much of the iterators that litter this section of the codebase.
Also clean up a little bit of the comments that describe the interface classes.
This commit is contained in:
@ -30,13 +30,13 @@ public:
|
||||
bool LoadConfig(bool isGC);
|
||||
void SaveConfig();
|
||||
|
||||
std::vector< ControllerEmu* > controllers;
|
||||
std::vector<ControllerEmu*> controllers;
|
||||
|
||||
std::recursive_mutex controls_lock; // for changing any control references
|
||||
std::recursive_mutex controls_lock; // for changing any control references
|
||||
|
||||
const char * const ini_name;
|
||||
const char * const gui_name;
|
||||
const char * const profile_name;
|
||||
const char* const ini_name;
|
||||
const char* const gui_name;
|
||||
const char* const profile_name;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user