mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-26 07:54:36 +00:00
Remove debug printf.
This commit is contained in:
parent
f971faab58
commit
4795011b12
@ -205,7 +205,6 @@ Backend::Backend( const char* title, const std::function<void()>& redraw, const
|
|||||||
return EM_TRUE;
|
return EM_TRUE;
|
||||||
} );
|
} );
|
||||||
emscripten_set_keydown_callback( EMSCRIPTEN_EVENT_TARGET_WINDOW, nullptr, EM_TRUE, [] ( int, const EmscriptenKeyboardEvent* e, void* ) -> EM_BOOL {
|
emscripten_set_keydown_callback( EMSCRIPTEN_EVENT_TARGET_WINDOW, nullptr, EM_TRUE, [] ( int, const EmscriptenKeyboardEvent* e, void* ) -> EM_BOOL {
|
||||||
printf( "key down: %s\n", e->code );
|
|
||||||
const auto code = TranslateKeyCode( e->code );
|
const auto code = TranslateKeyCode( e->code );
|
||||||
if( code == ImGuiKey_None ) return EM_FALSE;
|
if( code == ImGuiKey_None ) return EM_FALSE;
|
||||||
ImGui::GetIO().AddKeyEvent( code, true );
|
ImGui::GetIO().AddKeyEvent( code, true );
|
||||||
|
Loading…
Reference in New Issue
Block a user