Put in a note that a restart is required when changing the texture filter level (remove later when it isn't)

This commit is contained in:
kreatordxx 2010-09-17 11:06:48 +00:00
parent 8172c34f7f
commit b0444fb77a
2 changed files with 2 additions and 1 deletions

View file

@ -5,6 +5,7 @@ D2X-Rebirth Changelog
arch/carbon/conf.h: Enable IPv6 for Mac OS X 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 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 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 20100904
-------- --------

View file

@ -1139,7 +1139,7 @@ void do_graphics_menu()
int i = 0, j = 0; int i = 0, j = 0;
do { 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[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[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; m[3].type = NM_TYPE_RADIO; m[3].text = "Trilinear"; m[3].value = 0; m[3].group = 0;