mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Remove AlphaMaskHack
This commit is contained in:
parent
d90da45a76
commit
608d43898d
2 changed files with 0 additions and 4 deletions
|
@ -444,9 +444,6 @@ void TransformDrawEngine::ApplyDrawState(int prim) {
|
|||
amask = false;
|
||||
}
|
||||
}
|
||||
if (g_Config.bAlphaMaskHack) {
|
||||
amask = true; // Yes, this makes no sense, but it "fixes" the 3rd Birthday by popular demand.
|
||||
}
|
||||
|
||||
glstate.colorMask.set(rmask, gmask, bmask, amask);
|
||||
|
||||
|
|
|
@ -190,7 +190,6 @@ void GameSettingsScreen::CreateViews() {
|
|||
graphicsSettings->Add(new ItemHeader(gs->T("Hack Settings", "Hack Settings (these WILL cause glitches)")));
|
||||
graphicsSettings->Add(new CheckBox(&g_Config.bTimerHack, gs->T("Timer Hack")));
|
||||
graphicsSettings->Add(new CheckBox(&g_Config.bDisableStencilTest, gs->T("Disable Stencil Test")));
|
||||
graphicsSettings->Add(new CheckBox(&g_Config.bAlphaMaskHack, gs->T("Alpha Mask Hack (3rd Birthday)")));
|
||||
graphicsSettings->Add(new CheckBox(&g_Config.bAlwaysDepthWrite, gs->T("Always Depth Write")));
|
||||
CheckBox *prescale = graphicsSettings->Add(new CheckBox(&g_Config.bPrescaleUV, gs->T("Texture Coord Speedhack")));
|
||||
if (PSP_IsInited())
|
||||
|
|
Loading…
Add table
Reference in a new issue