diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 7a2e94f95..0c59f759a 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -3,6 +3,7 @@ D1X-Rebirth Changelog 20100819 -------- d1x-rebirth/main/bmread.c, d1x-rebirth/main/paging.c, d1x-rebirth/main/aipath.c, d1x-rebirth/main/piggy.c, d1x-rebirth/main/gamesave.c, d1x-rebirth/main/dumpmine.c, d1x-rebirth/main/kconfig.c, d1x-rebirth/main/gamecntl.c, d1x-rebirth/editor/segment.c, d1x-rebirth/editor/kmine.c, d1x-rebirth/editor/mine.c, d1x-rebirth/editor/group.c, d1x-rebirth/editor/med.c, d1x-rebirth/editor/eswitch.c, d1x-rebirth/editor/medwall.c, d1x-rebirth/iff/iff.c, d1x-rebirth/ui/radio.c, d1x-rebirth/ui/scroll.c, d1x-rebirth/ui/window.c, d1x-rebirth/ui/keypad.c, d1x-rebirth/ui/file.c, d1x-rebirth/ui/listbox.c, d1x-rebirth/ui/mouse.c, d1x-rebirth/ui/menubar.c, d1x-rebirth/ui/lfile.c, d1x-rebirth/mem/mem.c: Patching together editor so it compiles again (while still not running); Implemented PhysFS for file accessing for editor- and debugging-related code +main/text.c: In demo list help text changed string CTRL+C to CTRL-C for consistency 20100817 -------- diff --git a/main/text.c b/main/text.c index 6401abc48..d39af9dc5 100644 --- a/main/text.c +++ b/main/text.c @@ -304,7 +304,7 @@ void load_text() break; case 330: - extra = "\n converts format\nIntel <-> PowerPC"; + extra = "\n converts format\nIntel <-> PowerPC"; str = d_malloc(strlen(Text_string[i]) + strlen(extra) + 1); if (!str) break;