[Scummvm-cvs-logs] CVS: scummvm/simon verb.cpp,1.12,1.13

Max Horn fingolfin at users.sourceforge.net
Sat Feb 8 16:21:05 CET 2003


Update of /cvsroot/scummvm/scummvm/simon
In directory sc8-pr-cvs1:/tmp/cvs-serv15996/simon

Modified Files:
	verb.cpp 
Log Message:
fixed regression I caused

Index: verb.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/verb.cpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- verb.cpp	5 Feb 2003 19:50:10 -0000	1.12
+++ verb.cpp	9 Feb 2003 00:20:52 -0000	1.13
@@ -120,9 +120,10 @@
 		case  1: verb_prep_names = german_verb_prep_names; break;
 		default: verb_prep_names = english_verb_prep_names; break;
 		}
-		CHECK_BOUNDS(hitarea_id, verb_prep_names);
+		CHECK_BOUNDS(hitarea_id, english_verb_prep_names);
 		txt = verb_prep_names[hitarea_id];
 	} else {
+		CHECK_BOUNDS(hitarea_id, verb_names);
 		txt = verb_names[hitarea_id];
 	}
 	x = (53 - strlen(txt)) * 3;





More information about the Scummvm-git-logs mailing list