mirror of https://github.com/AxioDL/boo.git
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…
Reference in New Issue