diff --git a/CHANGELOG.txt b/CHANGELOG.txt index ed1429e0f..5d9c04d9d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 -------- diff --git a/main/titles.c b/main/titles.c index 0f1f07289..67bb6ffe6 100644 --- a/main/titles.c +++ b/main/titles.c @@ -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)