forked from Mirrorlandia_minetest/minetest
keycode.cpp: use std::unordered_map for keypress cache
This commit is contained in:
parent
69f3c424c1
commit
080899b0f1
@ -359,13 +359,13 @@ const KeyPress CancelKey("KEY_CANCEL");
|
||||
*/
|
||||
|
||||
// A simple cache for quicker lookup
|
||||
std::map<std::string, KeyPress> g_key_setting_cache;
|
||||
std::unordered_map<std::string, KeyPress> g_key_setting_cache;
|
||||
|
||||
KeyPress getKeySetting(const char *settingname)
|
||||
{
|
||||
std::map<std::string, KeyPress>::iterator n;
|
||||
std::unordered_map<std::string, KeyPress>::iterator n;
|
||||
n = g_key_setting_cache.find(settingname);
|
||||
if(n != g_key_setting_cache.end())
|
||||
if (n != g_key_setting_cache.end())
|
||||
return n->second;
|
||||
|
||||
KeyPress k(g_settings->get(settingname).c_str());
|
||||
|
Loading…
Reference in New Issue
Block a user