gsdx: Clean up Wild Arms hack cruft

The Wild Arms Offset hack can only be on or off. There is no third
state. Convert the three-state checkbox into a two-state checkbox, fix
the description and remove a leftover.
This commit is contained in:
Jonathan Li 2015-08-10 22:01:45 +01:00
parent 1915bf1a61
commit 63c26c45ec
3 changed files with 2 additions and 6 deletions

View File

@ -76,7 +76,6 @@ public:
uint32 fst:1; uint32 fst:1;
uint32 logz:1; uint32 logz:1;
uint32 rtcopy:1; uint32 rtcopy:1;
uint32 wildhack:2;
}; };
uint32 key; uint32 key;

View File

@ -70,10 +70,7 @@ const char* dialog_message(int ID, bool* updateText) {
" Half option is the preferred one. Use it for Mana Khemia or Ar Tonelico for example." " Half option is the preferred one. Use it for Mana Khemia or Ar Tonelico for example."
" Full can be used for Tales of Destiny."; " Full can be used for Tales of Destiny.";
case IDC_WILDHACK: case IDC_WILDHACK:
return "WildArms\n\nLowers the GS precision to avoid gaps between pixels when" return "Wild Arms\n\nLowers the GS precision to avoid gaps between pixels when upscaling. Fixes the text on Wild Arms games.";
" upscaling. Full option fixes the text on WildArms games, while Half option might improve portraits"
" in Ar Tonelico.\n\n"
"Strech hack might work too";
case IDC_MSAACB: case IDC_MSAACB:
case IDC_STATIC_MSAA: case IDC_STATIC_MSAA:
return "Multisample Anti-Aliasing\n\nEnables hardware Anti-Aliasing. Needs lots of memory." return "Multisample Anti-Aliasing\n\nEnables hardware Anti-Aliasing. Needs lots of memory."

View File

@ -106,7 +106,7 @@ BEGIN
CONTROL "Sprite",IDC_SPRITEHACK,"Button",BS_AUTO3STATE | WS_TABSTOP,14,117,35,10 CONTROL "Sprite",IDC_SPRITEHACK,"Button",BS_AUTO3STATE | WS_TABSTOP,14,117,35,10
LTEXT "USE AT YOUR OWN RISK!",IDC_STATIC,7,276,84,11,WS_DISABLED LTEXT "USE AT YOUR OWN RISK!",IDC_STATIC,7,276,84,11,WS_DISABLED
COMBOBOX IDC_MSAACB,35,18,54,63,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP COMBOBOX IDC_MSAACB,35,18,54,63,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
CONTROL "WildArmsOffset",IDC_WILDHACK,"Button",BS_AUTO3STATE | WS_TABSTOP,14,134,64,10 CONTROL "Wild Arms Offset",IDC_WILDHACK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,134,64,10
LTEXT "TEXT_GOES_HERE",IDC_HACK_DESCRIPTION,102,20,199,192 LTEXT "TEXT_GOES_HERE",IDC_HACK_DESCRIPTION,102,20,199,192
CONTROL "Alpha Stencil",IDC_ALPHASTENCIL,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,151,66,10 CONTROL "Alpha Stencil",IDC_ALPHASTENCIL,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,151,66,10
CONTROL "Round Sprite",IDC_ROUND_SPRITE,"Button",BS_AUTO3STATE | WS_TABSTOP,14,168,66,8 CONTROL "Round Sprite",IDC_ROUND_SPRITE,"Button",BS_AUTO3STATE | WS_TABSTOP,14,168,66,8