Lilypad: Disable a confusing control for now.

Also a small comment on GSdx's texture cache lookup.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4793 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2011-07-05 23:01:16 +00:00
parent 357030330a
commit 159f4a691f
2 changed files with 5 additions and 1 deletions

View File

@ -97,6 +97,10 @@ GSTextureCache::Source* GSTextureCache::LookupSource(const GIFRegTEX0& TEX0, con
uint32 bp = TEX0.TBP0; uint32 bp = TEX0.TBP0;
uint32 psm = TEX0.PSM; uint32 psm = TEX0.PSM;
// This should get looked at if you feel like hackfixing the texture cache.
// Checking for type < 1 (so no only RenderTarget, not DepthStencil get checked), it fixes the fog in Arc the Lad.
// Simply not doing this code at all makes a lot of previsouly missing stuff show (but breaks pretty much everything
// else.
for(int type = 0; type < 2 && dst == NULL; type++) for(int type = 0; type < 2 && dst == NULL; type++)
{ {
for(list<Target*>::iterator i = m_dst[type].begin(); i != m_dst[type].end(); i++) for(list<Target*>::iterator i = m_dst[type].begin(); i != m_dst[type].end(); i++)

View File

@ -237,7 +237,7 @@ BEGIN
CONTROL "",IDC_PAD_LIST,"SysListView32",LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_ALIGNLEFT | WS_TABSTOP,81,156,183,52,WS_EX_CLIENTEDGE CONTROL "",IDC_PAD_LIST,"SysListView32",LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_ALIGNLEFT | WS_TABSTOP,81,156,183,52,WS_EX_CLIENTEDGE
COMBOBOX IDC_PAD_TYPE,270,155,140,41,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP COMBOBOX IDC_PAD_TYPE,270,155,140,41,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
CONTROL "Use analog mode whenever possible",IDC_ANALOG_START1, CONTROL "Use analog mode whenever possible",IDC_ANALOG_START1,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,270,172,132,10 "Button",BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,270,172,132,10
GROUPBOX "Device Diagnostics",IDC_STATIC,7,219,201,101 GROUPBOX "Device Diagnostics",IDC_STATIC,7,219,201,101
CONTROL "",IDC_LIST,"SysListView32",LVS_LIST | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_NOSORTHEADER | WS_BORDER | WS_VSCROLL | WS_TABSTOP,14,231,187,65,WS_EX_CLIENTEDGE CONTROL "",IDC_LIST,"SysListView32",LVS_LIST | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_NOSORTHEADER | WS_BORDER | WS_VSCROLL | WS_TABSTOP,14,231,187,65,WS_EX_CLIENTEDGE
PUSHBUTTON "Test Device",ID_TEST,87,300,57,15 PUSHBUTTON "Test Device",ID_TEST,87,300,57,15