Scale tab stops in briefings to font-size correctly

This commit is contained in:
zicodxx 2010-07-15 09:22:33 +00:00
parent 2d739a2c46
commit 9596e0fcf8
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@ D1X-Rebirth Changelog
20100715
--------
main/wall.c, main/newdemo.c, main/newdemo.h, main/gauges.c: Cleaned the variables used for newdemo code; Instead of giving both old and new values to special recording functions, added new variables to demo code serving this purpose and also checking for redundant record calls which only would waste bytes; Removed duplicated-object-id-hack which did not work as expected and caused jittering on playback; In that process, found a bug where Num_open_doors might nor be set correctly - cleaned that up a little and got also rid of one aweful goto
main/titles.c: Scale tab stops in briefings to font-size correctly
20100713
--------

View file

@ -576,7 +576,7 @@ int briefing_process_char(briefing *br)
;
} else if (ch == 'T') {
br->tab_stop = get_message_num(&br->message);
br->tab_stop*=(1+HIRESMODE);
br->tab_stop*=FSPACX(1+HIRESMODE);
br->prev_ch = 10; // read to eoln
} else if (ch == 'R') {
if (br->robot_canv != NULL)