Add script type check

This commit is contained in:
Alexander Batalov 2023-05-31 21:29:07 +03:00
parent fa25578fd5
commit 7b32a9bbcc
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ void sfall_gl_scr_set_repeat(Program* program, int frames)
void sfall_gl_scr_set_type(Program* program, int type)
{
if (type > 3) {
if (type < 0 || type > 3) {
return;
}