diff options
| author | Ray <[email protected]> | 2018-01-19 11:41:51 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-01-19 11:41:51 +0100 |
| commit | 750323da53dd34cb02d2919066259da7ab7dc7a9 (patch) | |
| tree | 43104b379b10760c79c7531a9140406c32dc62ac /examples/text | |
| parent | f818ec0e05ebc2d1292b56281d4c4291f0514539 (diff) | |
| parent | 5931bd501cb671854a85b4312bd4da614b6c8797 (diff) | |
| download | raylib-750323da53dd34cb02d2919066259da7ab7dc7a9.tar.gz raylib-750323da53dd34cb02d2919066259da7ab7dc7a9.zip | |
Merge branch 'develop' into testing_uwp
Diffstat (limited to 'examples/text')
| -rw-r--r-- | examples/text/text_input_box.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/text/text_input_box.c b/examples/text/text_input_box.c index 54eebf40..5f8d1c01 100644 --- a/examples/text/text_input_box.c +++ b/examples/text/text_input_box.c @@ -52,7 +52,7 @@ int main() letterCount++; } - if (key == KEY_BACKSPACE) + if (IsKeyPressed(KEY_BACKSPACE)) { letterCount--; name[letterCount] = '\0'; |
