mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
more uninteresting cleanup, fixed a minor race condition when toggling efb copy mode
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4261 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -23,8 +23,6 @@ namespace
|
||||
static bool g_ProjHack0;
|
||||
static ProjectionHack g_ProjHack1;
|
||||
static ProjectionHack g_ProjHack2;
|
||||
static bool g_FreeLook;
|
||||
static bool g_Widescreen;
|
||||
} // Namespace
|
||||
|
||||
|
||||
@ -43,16 +41,6 @@ void Projection_SetHack2(ProjectionHack value)
|
||||
g_ProjHack2 = value;
|
||||
}
|
||||
|
||||
void Projection_SetFreeLook(bool enabled)
|
||||
{
|
||||
g_FreeLook = enabled;
|
||||
}
|
||||
|
||||
void Projection_SetWidescreen(bool enabled)
|
||||
{
|
||||
g_Widescreen = enabled;
|
||||
}
|
||||
|
||||
bool Projection_GetHack0()
|
||||
{
|
||||
return g_ProjHack0;
|
||||
@ -68,17 +56,6 @@ ProjectionHack Projection_GetHack2()
|
||||
return g_ProjHack2;
|
||||
}
|
||||
|
||||
bool Projection_GetFreeLook()
|
||||
{
|
||||
return g_FreeLook;
|
||||
}
|
||||
|
||||
bool Projection_GetWidescreen()
|
||||
{
|
||||
return g_Widescreen;
|
||||
}
|
||||
|
||||
|
||||
void UpdateProjectionHack(int iPhackvalue)
|
||||
{
|
||||
bool bProjHack1=0, bPhackvalue1=0, bPhackvalue2=0;
|
||||
|
Reference in New Issue
Block a user