1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 12:21:20 +00:00

Merge pull request #170 from all-other-usernames-were-taken/development

Remove 255 char limit for `INPUT`
This commit is contained in:
Luke Ceddia 2021-07-06 16:56:05 +10:00 committed by GitHub
commit a0c525aafd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12376,8 +12376,6 @@ void qbs_input(int32 numvariables,uint8 newline){
goto qbs_input_next;
}
if (inpstr2->len>=255) goto qbs_input_next;
//affect inpstr2 with key
qbs_set(inpstr2,qbs_add(inpstr2,key));