Taking out one Int3 in init_boss_segments() stopping the program if there is more than one boss in level - taking out because it's not fatal or unsafe to do that; Also removed one conditional size_check which was meant for one mprintf we removed long ago

This commit is contained in:
zicodxx 2011-01-23 09:57:52 +01:00
parent 4e3eeee326
commit 169df35455
2 changed files with 6 additions and 7 deletions

View file

@ -1,5 +1,9 @@
D2X-Rebirth Changelog
20110123
--------
main/ai2.c: Taking out one Int3 in init_boss_segments() stopping the program if there is more than one boss in level - taking out because it's not fatal or unsafe to do that; Also removed one conditional size_check which was meant for one mprintf we removed long ago
20110122
--------
main/console.c, main/game.c, main/gamerend.c, main/gauges.c: Added timer_update() to stop/start/reset_time() functions so resumed last_timer_value will be precise; Added new FPS counter which actually does count the frames rendered per second and is less irritating; Added timer_dleay2 call to console to not stress CPU too much; Imporoved placement for show_time(), multi messages, marker messages and orb counts

View file

@ -229,15 +229,10 @@ void init_boss_segments(short segptr[], int *num_segs, int size_check, int one_w
N_selected_segs = 0;
#endif
if (size_check)
// See if there is a boss. If not, quick out.
for (i=0; i<=Highest_object_index; i++)
if ((Objects[i].type == OBJ_ROBOT) && (Robot_info[Objects[i].id].boss_flag)) {
if (boss_objnum != -1) // There are two bosses in this mine! i and boss_objnum!
Int3(); //do int3 here instead of assert so museum will work
boss_objnum = i;
}
if ((Objects[i].type == OBJ_ROBOT) && (Robot_info[Objects[i].id].boss_flag))
boss_objnum = i; // if != 1 then there is more than one boss here.
if (boss_objnum != -1) {
int original_boss_seg;