allow larger letters

This commit is contained in:
Zeno Rogue 2020-08-01 16:41:44 +02:00
parent 7c3c34c3d8
commit fc283bd527
1 changed files with 1 additions and 1 deletions

View File

@ -677,7 +677,7 @@ EX bool displaystr(int x, int y, int shift, int size, const char *str, color_t c
if(strlen(str) == 0) return false;
if(size < 4 || size > 255) {
if(size < 4 || size > 2000) {
return false;
}