mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 05:08:57 +00:00
Fix for setting projection hacks in ISO Properties.
And added a projection hack for Skies of Arcadia by downloadaja. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3402 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
ca7e4bd179
commit
a9728b50b9
3 changed files with 13 additions and 5 deletions
|
@ -434,6 +434,7 @@ void ConfigDialog::CreateGUIControls()
|
|||
m_PhackvalueCB->Append(wxT("Harvest Moon Magical Melody"));
|
||||
m_PhackvalueCB->Append(wxT("Baten Kaitos"));
|
||||
m_PhackvalueCB->Append(wxT("Baten Kaitos Origin"));
|
||||
m_PhackvalueCB->Append(wxT("Skies of Arcadia"));
|
||||
m_PhackvalueCB->SetSelection(g_Config.iPhackvalue);
|
||||
|
||||
// Default values
|
||||
|
@ -809,6 +810,12 @@ void Config::UpdateProjectionHack()
|
|||
g_Config.fhackvalue2 = 1.9988f;
|
||||
g_Config.bProjHack1 = 1;
|
||||
break;
|
||||
case OGL_HACK_SKIES_OF_ARCADIA:
|
||||
g_Config.bPhackvalue1 = 1;
|
||||
g_Config.fhackvalue1 = 0.04f;
|
||||
g_Config.bPhackvalue2 = 0;
|
||||
g_Config.bProjHack1 = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue