diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 20b421279..49944b9e7 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -5,6 +5,7 @@ D2X-Rebirth Changelog arch/carbon/conf.h: Enable IPv6 for Mac OS X main/config.c: Set default Jukebox music paths to original Redbook music in iTunes for Mac OS X d2x-rebirth.xcodeproj/project.pbxproj, include/cfile.h, include/hmp.h, include/physfsrwops.h, include/physfsx.h, INSTALL.txt, main/config.c, main/inferno.c, main/newdemo.c, main/newmenu.c, main/playsave.c, misc/hmp.c, misc/ignorecase.c: Link to PhysicsFS static library and use header from source for Mac OS X +main/menu.c: Put in a note that a restart is required when changing the texture filter level (remove later when it isn't) 20100904 -------- diff --git a/main/menu.c b/main/menu.c index a219328a7..b633ad3f9 100644 --- a/main/menu.c +++ b/main/menu.c @@ -1139,7 +1139,7 @@ void do_graphics_menu() int i = 0, j = 0; do { - m[0].type = NM_TYPE_TEXT; m[0].text="Texture Filtering:"; + m[0].type = NM_TYPE_TEXT; m[0].text="Texture Filtering (restart required):"; m[1].type = NM_TYPE_RADIO; m[1].text = "None (Classical)"; m[1].value = 0; m[1].group = 0; m[2].type = NM_TYPE_RADIO; m[2].text = "Bilinear"; m[2].value = 0; m[2].group = 0; m[3].type = NM_TYPE_RADIO; m[3].text = "Trilinear"; m[3].value = 0; m[3].group = 0;