Ticket #8295: spanish-issues.patch
File spanish-issues.patch, 924 bytes (added by , 21 years ago) |
---|
-
script_v6.cpp
old new 2542 2542 case 124: 2543 2543 _saveSound = args[1]; 2544 2544 break; 2545 case 215: 2546 if (args[1]) 2547 _noSubtitles = false; 2548 else 2549 _noSubtitles = true; 2550 break; 2545 2551 default: 2546 2552 error("o6_kernelSetFunctions: default case %d (param count %d)", args[0], num); 2547 2553 break; … … 2661 2667 void ScummEngine_v6::o6_kernelGetFunctions() { 2662 2668 int args[30]; 2663 2669 int i; 2670 int slot; 2664 2671 Actor *a; 2665 2672 2666 2673 getStackList(args, ARRAYSIZE(args)); … … 2744 2751 a = derefActor(args[1], "o6_kernelGetFunctions:212"); 2745 2752 // This is used by walk scripts 2746 2753 push(a->frame); 2754 break; 2755 case 213: 2756 slot = getVerbSlot(args[1], 0); 2757 push(_verbs[slot].x); 2758 break; 2759 case 214: 2760 slot = getVerbSlot(args[1], 0); 2761 push(_verbs[slot].y); 2747 2762 break; 2748 2763 case 215: 2749 2764 if ((_extraBoxFlags[args[1]] & 0x00FF) == 0x00C0) {