Fix m_inited

This commit is contained in:
Raul Tambre 2015-02-22 16:52:20 +02:00
parent 46e7207e93
commit 31b91c10ec

View File

@ -3,7 +3,7 @@
class KeyboardManager
{
bool m_inited;
bool m_inited = false;
std::unique_ptr<KeyboardHandlerBase> m_keyboard_handler;
public: