mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-13 02:21:53 +00:00
Fix #8001, although I don't quite understand what was wrong...
This commit is contained in:
parent
70cb4372c1
commit
4b8666dc5d
@ -49,12 +49,12 @@ public:
|
||||
void SetMap(const std::map<std::string, std::string> &m);
|
||||
const std::map<std::string, I18NEntry> &GetMap() { return map_; }
|
||||
void ClearMissed() { missedKeyLog_.clear(); }
|
||||
const char *GetName() const { return name_; }
|
||||
const char *GetName() const { return name_.c_str(); }
|
||||
|
||||
private:
|
||||
I18NCategory(I18NRepo *repo, const char *name) : name_(name) {}
|
||||
|
||||
const char *name_;
|
||||
std::string name_;
|
||||
|
||||
std::map<std::string, I18NEntry> map_;
|
||||
std::map<std::string, std::string> missedKeyLog_;
|
||||
|
Loading…
x
Reference in New Issue
Block a user