missing end line on c++ keycode stream

stable-5.2-namespace
Герхард PICCORO Lenz McKAY 2021-11-30 17:35:10 -04:00
parent 01e0eab930
commit bbd624535b
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ KeyPress::KeyPress(const char *name)
int chars_read = mbtowc(&Char, name, 1);
FATAL_ERROR_IF(chars_read != 1, "Unexpected multibyte character");
m_name = "";
warningstream << "KeyPress: Unknown key '" << name << "', falling back to first char.";
warningstream << "KeyPress: Unknown key '" << name << "', falling back to first char." << std::endl;
}
KeyPress::KeyPress(const irr::SEvent::SKeyInput &in, bool prefer_character)