[Scummvm-cvs-logs] CVS: scummvm/simon simon.cpp,1.175,1.176 simon.h,1.56,1.57 verb.cpp,1.18,1.19

Travis Howell kirben at users.sourceforge.net
Fri May 9 22:21:08 CEST 2003


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

Modified Files:
	simon.cpp simon.h verb.cpp 
Log Message:

Rename two unknown function


Index: simon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.cpp,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- simon.cpp	1 May 2003 07:55:55 -0000	1.175
+++ simon.cpp	10 May 2003 05:20:55 -0000	1.176
@@ -1126,9 +1126,9 @@
 
 		if (_last_hitarea == NULL) {
 		} else if (_last_hitarea->id == 0x7FFB) {
-			handle_unk2_hitarea(_last_hitarea->fcs);
+			handle_uparrow_hitarea(_last_hitarea->fcs);
 		} else if (_last_hitarea->id == 0x7FFC) {
-			handle_unk_hitarea(_last_hitarea->fcs);
+			handle_downarrow_hitarea(_last_hitarea->fcs);
 		} else if (_last_hitarea->item_ptr != NULL) {
 			_hitarea_object_item = _last_hitarea->item_ptr;
 			_variableArray[60] = (_last_hitarea->flags & 1) ? (_last_hitarea->flags >> 8) : 0xFFFF;
@@ -1590,9 +1590,9 @@
 
 		if (ha == NULL) {
 		} else if (ha->id == 0x7FFB) {
-			handle_unk2_hitarea(ha->fcs);
+			handle_uparrow_hitarea(ha->fcs);
 		} else if (ha->id == 0x7FFC) {
-			handle_unk_hitarea(ha->fcs);
+			handle_downarrow_hitarea(ha->fcs);
 		} else if (ha->id >= 101 && ha->id < 113) {
 			_verb_hitarea = ha->unk3;
 			handle_verb_hitarea(ha);

Index: simon.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.h,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- simon.h	8 Mar 2003 00:21:34 -0000	1.56
+++ simon.h	10 May 2003 05:20:55 -0000	1.57
@@ -519,8 +519,8 @@
 	void defocusHitarea();
 	void startSubroutine170();
 	void runSubroutine101();
-	void handle_unk2_hitarea(FillOrCopyStruct *fcs);
-	void handle_unk_hitarea(FillOrCopyStruct *fcs);
+	void handle_uparrow_hitarea(FillOrCopyStruct *fcs);
+	void handle_downarrow_hitarea(FillOrCopyStruct *fcs);
 	void hitareaChangedHelper();
 	void focusVerb(uint hitarea_id);
 	HitArea *findHitAreaByID(uint hitarea_id);

Index: verb.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/verb.cpp,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- verb.cpp	2 Apr 2003 01:59:43 -0000	1.18
+++ verb.cpp	10 May 2003 05:20:56 -0000	1.19
@@ -307,7 +307,7 @@
 		hitarea_leave(ha);
 }
 
-void SimonState::handle_unk2_hitarea(FillOrCopyStruct *fcs) {
+void SimonState::handle_uparrow_hitarea(FillOrCopyStruct *fcs) {
 	uint index;
 
 	index = get_fcs_ptr_3_index(fcs);
@@ -320,7 +320,7 @@
 	unlock();
 }
 
-void SimonState::handle_unk_hitarea(FillOrCopyStruct *fcs) {
+void SimonState::handle_downarrow_hitarea(FillOrCopyStruct *fcs) {
 	uint index;
 
 	index = get_fcs_ptr_3_index(fcs);





More information about the Scummvm-git-logs mailing list