From 73d2b3e9684da5eb43280b7facbf2f31d584a75b Mon Sep 17 00:00:00 2001 From: hrydgard Date: Sun, 13 Sep 2009 10:18:01 +0000 Subject: 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 --- Source/Core/VideoCommon/Src/GlobalControl.cpp | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'Source/Core/VideoCommon/Src/GlobalControl.cpp') diff --git a/Source/Core/VideoCommon/Src/GlobalControl.cpp b/Source/Core/VideoCommon/Src/GlobalControl.cpp index 2dbb13901b..f345502e27 100644 --- a/Source/Core/VideoCommon/Src/GlobalControl.cpp +++ b/Source/Core/VideoCommon/Src/GlobalControl.cpp @@ -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; -- cgit v1.2.3