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:
Lioncash
2014-01-30 19:51:21 -05:00
parent b5b02de663
commit d91a5abba1
13 changed files with 301 additions and 386 deletions

View File

@ -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