mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix camera updates being toggled by N key in release mode (#2762)
This commit is contained in:
parent
5c3c965c1a
commit
63b12f1f04
2 changed files with 6 additions and 2 deletions
|
@ -256,7 +256,11 @@ KeyPress::KeyPress() :
|
|||
|
||||
KeyPress::KeyPress(const char *name)
|
||||
{
|
||||
if (strlen(name) > 4) {
|
||||
if (name[0] == 0) {
|
||||
Key = irr::KEY_KEY_CODES_COUNT;
|
||||
Char = L'\0';
|
||||
return;
|
||||
} else if (strlen(name) > 4) {
|
||||
try {
|
||||
Key = keyname_to_keycode(name);
|
||||
m_name = name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue