mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 14:18:37 +00:00
GLK: SCOTT: Fix copy/paste reeor. CID 1488039
This commit is contained in:
parent
4a748a1791
commit
74cd80a92c
@ -105,7 +105,7 @@ uint8_t *readDictionary(GameInfo info, uint8_t **pointer, int loud) {
|
||||
int nv = info._numberOfVerbs;
|
||||
int nn = info._numberOfNouns;
|
||||
|
||||
for (int i = 0; i <= MAX(nn, nw) - nv; i++) {
|
||||
for (int i = 0; i <= MAX(nv, nw) - nv; i++) {
|
||||
_G(_verbs)[nv + i] = ".\0";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user