More merges

This commit is contained in:
GabsPuNs
2026-05-11 00:53:00 -04:00
parent ca5aa1eace
commit 9f0107b76e
23 changed files with 294 additions and 101 deletions

View File

@@ -239,13 +239,10 @@ int UIScene_DebugCreateSchematic::KeyboardCompleteCallback(LPVOID lpParam,bool b
{
UIScene_DebugCreateSchematic *pClass=static_cast<UIScene_DebugCreateSchematic *>(lpParam);
uint16_t pchText[128] = {};
#ifdef _WINDOWS64
uint16_t pchText[128];
ZeroMemory(pchText, 128 * sizeof(uint16_t));
Win64_GetKeyboardText(pchText, 128);
#else
uint16_t pchText[128];
ZeroMemory(pchText, 128 * sizeof(uint16_t) );
InputManager.GetText(pchText);
#endif