diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 68a548219..26c63c43e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -3,6 +3,7 @@ D1X-Rebirth Changelog 20100219 -------- main/gauges.c, main/text.c, main/weapon.c: The little light bulb showing homing warning in Cockpit was broken and I replaced it; Rewritten code to show weapon text in Cockpit and Statusbar slightly; Instead of using hardcoded weapon strings, use from descent.txb and fixed too long spreadfire string properly +main/text.c: Small fix for most recent commit: Removed an obsolete d_free 20100214 -------- diff --git a/main/text.c b/main/text.c index a7855cc56..b6f5162c6 100644 --- a/main/text.c +++ b/main/text.c @@ -40,9 +40,6 @@ char *Text_string[N_TEXT_STRINGS]; void free_text() { - //added on 9/13/98 by adb to free all text - d_free(Text_string[145]); - //end addition - adb d_free(Text_string[330]); d_free(text); }