Fixing more examples
- Changed a few parts to use IntPtr for now.
This commit is contained in:
parent
ce89a3bc8d
commit
c617dff002
6 changed files with 22 additions and 25 deletions
|
|
@ -27,7 +27,7 @@ public partial class text_input_box
|
|||
|
||||
InitWindow(screenWidth, screenHeight, "raylib [text] example - input box");
|
||||
|
||||
StringBuilder name = new StringBuilder(' ', MAX_INPUT_CHARS + 1); // NOTE: One extra space required for line ending char '\0'
|
||||
StringBuilder name = new StringBuilder(" ", MAX_INPUT_CHARS + 1); // NOTE: One extra space required for line ending char '\0'
|
||||
int letterCount = 0;
|
||||
|
||||
Rectangle textBox = new Rectangle( screenWidth/2 - 100, 180, 225, 50 );
|
||||
|
|
|
|||
Loading…
Reference in a new issue