ocornut / imgui_test_engine

Dear ImGui Automation Engine & Test Suite
386 stars 40 forks source link

imgui_app: Win32 DX11: Fix non UNICODE builds #39

Closed liamwhan closed 5 months ago

liamwhan commented 5 months ago

Fixes build failures from imgui_app.cpp when UNICODE is not defined.

ocornut commented 5 months ago

Thanks for the PR. We should be using exclusively the W functions actually, as with the imgui examples/backends. They work fine even when UNICODE is not set.

ocornut commented 5 months ago

I have reworked this as 8581155. This matches what we have done in main imgui repository. Thanks for the head up!