Merge pull request #37 from simonwashere/fix-textbox-bug

fix textbox bug
This commit is contained in:
Ray
2019-06-27 20:39:06 +02:00
committed by GitHub

View File

@ -2709,6 +2709,7 @@ RAYGUIDEF bool GuiTextBox(Rectangle bounds, char *text, int textSize, bool editM
{
text[keyCount] = (char)key;
keyCount++;
text[keyCount] = '\0';
}
}
}