mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-30 07:23:05 +00:00
DIRECTOR: Lingo: Do not error out on unknown entities
This commit is contained in:
parent
5414a0ec2c
commit
d9cf5af9f0
@ -1149,7 +1149,7 @@ YY_RULE_SETUP
|
||||
return THEENTITY;
|
||||
}
|
||||
|
||||
error("Unhandled the entity %s", ptr);
|
||||
warning("Unhandled the entity %s", ptr);
|
||||
}
|
||||
YY_BREAK
|
||||
case 35:
|
||||
@ -1172,7 +1172,7 @@ YY_RULE_SETUP
|
||||
return THEENTITY;
|
||||
}
|
||||
|
||||
error("Unhandled the entity %s", ptr);
|
||||
warning("Unhandled the entity %s", ptr);
|
||||
}
|
||||
YY_BREAK
|
||||
case 36:
|
||||
|
@ -131,7 +131,7 @@ whitespace [\t ]
|
||||
return THEENTITY;
|
||||
}
|
||||
|
||||
error("Unhandled the entity %s", ptr);
|
||||
warning("Unhandled the entity %s", ptr);
|
||||
}
|
||||
(?i:the[ \t]+[[:alpha:]]+) {
|
||||
count();
|
||||
@ -150,7 +150,7 @@ whitespace [\t ]
|
||||
return THEENTITY;
|
||||
}
|
||||
|
||||
error("Unhandled the entity %s", ptr);
|
||||
warning("Unhandled the entity %s", ptr);
|
||||
}
|
||||
(?i:then) { count(); return tTHEN; }
|
||||
(?i:to) { count(); return tTO; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user