diff options
| author | Matthew Parlane <parlane@gmail.com> | 2014-02-08 00:22:24 +1300 |
|---|---|---|
| committer | Matthew Parlane <parlane@gmail.com> | 2014-02-08 00:22:24 +1300 |
| commit | 64e01ec763d21915e7166e625f8a3e85b46fbcbb (patch) | |
| tree | 5fbdf175709475f21edb64dc46f4810237cae9a2 /Source/Core/Common | |
| parent | 4f97666bfddc8c080465c76c63bae9e3023ce2e6 (diff) | |
| parent | 6b980cbf305eb8673bdcf90599798214a21c4298 (diff) | |
Merge pull request #48 from Parlane/SetupWiiMemory_tidy
Tidy up SetupWiiMemory
Diffstat (limited to 'Source/Core/Common')
| -rw-r--r-- | Source/Core/Common/SettingsHandler.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/Common/SettingsHandler.h b/Source/Core/Common/SettingsHandler.h index 232555dea2..3666935438 100644 --- a/Source/Core/Common/SettingsHandler.h +++ b/Source/Core/Common/SettingsHandler.h @@ -22,6 +22,10 @@ public: INITIAL_SEED = 0x73B5DBFA }; + inline void AddSetting(const char *key, const std::string& value) + { + AddSetting(key, value.c_str()); + } void AddSetting(const char *key, const char *value); const u8 *GetData() const; |
