Watch
2
0
Fork
You've already forked raylib-cs
0

Fixing more examples

- Changed a few parts to use IntPtr for now.
This commit is contained in:
ChrisDill 2018-10-25 18:20:13 +01:00
commit c617dff002
6 changed files with 22 additions and 25 deletions

View file

@ -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 );