mirror of
https://github.com/AxioDL/boo.git
synced 2025-05-14 19:31:20 +00:00
Bug fix for changing Win32 window title
This commit is contained in:
parent
73daeef6f1
commit
2b6d0cbb1c
@ -395,7 +395,7 @@ public:
|
||||
{
|
||||
/* New-window message (coalesced onto main thread) */
|
||||
std::unique_lock<std::mutex> lk(m_nwmt);
|
||||
const SystemString* title = reinterpret_cast<const SystemString*>(msg.wParam);
|
||||
SystemStringView* title = reinterpret_cast<SystemStringView*>(msg.wParam);
|
||||
m_mwret = newWindow(*title, 1);
|
||||
lk.unlock();
|
||||
m_nwcv.notify_one();
|
||||
|
Loading…
x
Reference in New Issue
Block a user