|
From: <geo...@us...> - 2003-11-08 11:19:34
|
Update of /cvsroot/timewarp/source/melee
In directory sc8-pr-cvs1:/tmp/cvs-serv14592/melee
Modified Files:
mmain.cpp mship.cpp
Log Message:
fixed hotspot suppression problem/ batha deviant clouds changed/ hotspot crash analyzed and maybe fixed/ smooth transition of olidandee even if speed rapidly changes
Index: mmain.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/melee/mmain.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** mmain.cpp 26 Oct 2003 10:43:17 -0000 1.13
--- mmain.cpp 8 Nov 2003 11:19:29 -0000 1.14
***************
*** 544,547 ****
--- 544,548 ----
+
// CHECK FILE SIZES !! to intercept desynch before they happen.
***************
*** 559,562 ****
--- 560,565 ----
tw_error("DAT files have different size! This may cause a desynch. Press Retry to continue");
}
+
+
}
delete slot;
Index: mship.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/melee/mship.cpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** mship.cpp 26 Oct 2003 10:43:17 -0000 1.12
--- mship.cpp 8 Nov 2003 11:19:29 -0000 1.13
***************
*** 319,322 ****
--- 319,324 ----
angle = floor(oangle / (PI2/64)) * (PI2/64);
sprite_index = get_index(angle);
+
+ hashotspots = true;
}
***************
*** 413,416 ****
--- 415,420 ----
angle = floor(shipAngle / (PI2/64)) * (PI2/64);
sprite_index = get_index(angle);
+
+ hashotspots = true;
}
|