mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-21 03:31:40 +00:00
COMMON: Add setVal to ConfigManager::Domain.
This fixes compilation in the keymapper.
This commit is contained in:
parent
d811df89ff
commit
7c2660c97e
@ -64,6 +64,8 @@ public:
|
||||
String &operator[](const String &key) { return _entries[key]; }
|
||||
const String &operator[](const String &key) const { return _entries[key]; }
|
||||
|
||||
void setVal(const String &key, const String &value) { _entries.setVal(key, value); }
|
||||
|
||||
String &getVal(const String &key) { return _entries.getVal(key); }
|
||||
const String &getVal(const String &key) const { return _entries.getVal(key); }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user