mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Revert "Merge pull request #47 from lioncash/remove-stringfromint"
Breaks Android build. This reverts commit12d026c544
, reversing changes made to6d678490f5
.
This commit is contained in:
@ -56,7 +56,7 @@ public:
|
||||
|
||||
void Set(const char* key, int newValue, int defaultValue);
|
||||
void Set(const char* key, int newValue) {
|
||||
Set(key, std::to_string(newValue).c_str());
|
||||
Set(key, StringFromInt(newValue).c_str());
|
||||
}
|
||||
|
||||
void Set(const char* key, bool newValue, bool defaultValue);
|
||||
|
Reference in New Issue
Block a user