mirror of
https://github.com/electronicarts/CNC_TS_and_RA2_Mission_Editor.git
synced 2025-05-06 11:41:42 -04:00
fixed an return value issue .
This commit is contained in:
parent
bade742049
commit
12bc00a79f
1 changed files with 1 additions and 1 deletions
|
@ -280,7 +280,7 @@ public:
|
|||
const CString& GetString(const CString& section, const CString& key) const {
|
||||
return GetSection(section).GetString(key);
|
||||
}
|
||||
const CString& GetStringOr(const CString& section, const CString& key, const CString& def) const {
|
||||
const CString GetStringOr(const CString& section, const CString& key, const CString& def) const {
|
||||
return GetSection(section).GetStringOr(key, def);
|
||||
}
|
||||
const bool GetBool(const CString& section, const CString& key, bool def = false) const {
|
||||
|
|
Loading…
Add table
Reference in a new issue