File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -362,7 +362,7 @@ class CommonAPI
362
362
363
363
void onMouseConnected_impl (nbl::core::smart_refctd_ptr<nbl::ui::IMouseEventChannel>&& mch) override
364
364
{
365
- m_logger.log (" A mouse %p has been connected" , nbl::system::ILogger::ELL_INFO, mch);
365
+ m_logger.log (" A mouse %p has been connected" , nbl::system::ILogger::ELL_INFO, mch. get () );
366
366
m_inputSystem.get ()->add (m_inputSystem.get ()->m_mouse ,std::move (mch));
367
367
}
368
368
void onMouseDisconnected_impl (nbl::ui::IMouseEventChannel* mch) override
@@ -372,7 +372,7 @@ class CommonAPI
372
372
}
373
373
void onKeyboardConnected_impl (nbl::core::smart_refctd_ptr<nbl::ui::IKeyboardEventChannel>&& kbch) override
374
374
{
375
- m_logger.log (" A keyboard %p has been connected" , nbl::system::ILogger::ELL_INFO, kbch);
375
+ m_logger.log (" A keyboard %p has been connected" , nbl::system::ILogger::ELL_INFO, kbch. get () );
376
376
m_inputSystem.get ()->add (m_inputSystem.get ()->m_keyboard ,std::move (kbch));
377
377
}
378
378
void onKeyboardDisconnected_impl (nbl::ui::IKeyboardEventChannel* kbch) override
You can’t perform that action at this time.
0 commit comments