RCS file: /cvsroot/scummvm/tools/descumm-tool.cpp,v
retrieving revision 1.12
diff -u -r1.12 descumm-tool.cpp
|
|
|
277 | 277 | mem += 4; |
278 | 278 | } |
279 | 279 | } else if (scriptVersion >= 5) { |
280 | | if (size_of_code < (scriptVersion == 5 ? 8 : 10)) { |
| 280 | if (size_of_code < (scriptVersion == 5 ? 8 : 9)) { |
281 | 281 | printf("File too small to be a script\n"); |
282 | 282 | return 1; |
283 | 283 | } |
RCS file: /cvsroot/scummvm/tools/descumm6.cpp,v
retrieving revision 1.188
diff -u -r1.188 descumm6.cpp
|
|
|
3270 | 3270 | ext(output, "rlp|isAnyOf"); |
3271 | 3271 | break; |
3272 | 3272 | case 0xAE: |
3273 | | ext(output, "x" "systemOps\0" "\x9E|pauseGame," "\xA0|shutDown"); |
| 3273 | ext(output, "x" "systemOps\0" |
| 3274 | "\x9E|restartGame," |
| 3275 | "\x9F|pauseGame," |
| 3276 | "\xA0|shutDown"); |
3274 | 3277 | break; |
3275 | 3278 | case 0xAF: |
3276 | 3279 | ext(output, "rp|isActorInBox"); |