mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-03-28 14:00:41 -04:00
Add the wide screen hack by <---Does the person even have a user name?
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4171 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@@ -24,6 +24,7 @@ static bool g_ProjHack0;
|
||||
static ProjectionHack g_ProjHack1;
|
||||
static ProjectionHack g_ProjHack2;
|
||||
static bool g_FreeLook;
|
||||
static bool g_Widescreen;
|
||||
} // Namespace
|
||||
|
||||
|
||||
@@ -47,6 +48,11 @@ void Projection_SetFreeLook(bool enabled)
|
||||
g_FreeLook = enabled;
|
||||
}
|
||||
|
||||
void Projection_SetWidescreen(bool enabled)
|
||||
{
|
||||
g_Widescreen = enabled;
|
||||
}
|
||||
|
||||
bool Projection_GetHack0()
|
||||
{
|
||||
return g_ProjHack0;
|
||||
@@ -66,3 +72,8 @@ bool Projection_GetFreeLook()
|
||||
{
|
||||
return g_FreeLook;
|
||||
}
|
||||
|
||||
bool Projection_GetWidescreen()
|
||||
{
|
||||
return g_Widescreen;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user