corrected position of multi-message entry string

This commit is contained in:
zicodxx 2007-01-27 15:48:22 +00:00
parent 632cfa3633
commit 98fc9a1e00
2 changed files with 4 additions and 2 deletions

View file

@ -3,6 +3,8 @@ D2X-Rebirth Changelog
20070127
--------
main/credits: use ogl_ubitmapm_cs instead of show_fullscr in OGL to render faster
main/kconfig.c: made pitching time as fast as heading time - compared with original Descent1 & 2
main/gamerend.c: corrected position of multi-message entry string
20070126
--------

View file

@ -148,7 +148,7 @@ void game_draw_multi_message()
gr_set_curfont( GAME_FONT ); //GAME_FONT );
gr_set_fontcolor(gr_getcolor(0,63,0), -1 );
sprintf( temp_string, "%s: %s_", TXT_MESSAGE, Network_message );
draw_centered_text(grd_curcanv->cv_bitmap.bm_h/2-16, temp_string );
draw_centered_text(grd_curcanv->cv_bitmap.bm_h/2-(16*SHEIGHT/200), temp_string );
}
@ -156,7 +156,7 @@ void game_draw_multi_message()
gr_set_curfont( GAME_FONT ); //GAME_FONT );
gr_set_fontcolor(gr_getcolor(0,63,0), -1 );
sprintf( temp_string, "%s #%d: %s_", TXT_MACRO, multi_defining_message, Network_message );
draw_centered_text(grd_curcanv->cv_bitmap.bm_h/2-16, temp_string );
draw_centered_text(grd_curcanv->cv_bitmap.bm_h/2-(16*SHEIGHT/200), temp_string );
}
}
#endif