* Allow handling of WM_CHAR in the case of Windows.

This commit is contained in:
iProgramInCpp
2023-08-05 16:13:11 +03:00
parent 386fac3ff6
commit 0ceef907c0
7 changed files with 47 additions and 13 deletions

View File

@@ -478,7 +478,6 @@ void Minecraft::tickInput()
Mouse::_index = -1;
}
#ifndef ORIGINAL_CODE
void Minecraft::tickMouse()
{
if (!m_bGrabbedMouse)
@@ -486,7 +485,12 @@ void Minecraft::tickMouse()
platform()->recenterMouse();
}
#endif
void Minecraft::handleCharInput(char chr)
{
if (field_D14)
field_D14->charInput(chr);
}
void Minecraft::_levelGenerated()
{