Fix variable types.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5483 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang 2010-05-26 20:46:28 +00:00
parent 3061942dfc
commit daf1069c27

View File

@ -98,7 +98,9 @@ static bool s_bHaveCoverageMSAA = false;
static u32 s_blendMode;
static volatile bool s_bScreenshot = false;
#if defined(HAVE_WX) && HAVE_WX
static Common::Thread *scrshotThread = 0;
#endif
static Common::CriticalSection s_criticalScreenshot;
static std::string s_sScreenshotName;
@ -114,8 +116,8 @@ static int m_FrameBufferHeight;
static GLuint s_tempScreenshotFramebuffer = 0;
static int s_XFB_width;
static int s_XFB_height;
static unsigned int s_XFB_width;
static unsigned int s_XFB_height;
static float xScale;
static float yScale;
@ -123,9 +125,6 @@ static float yScale;
static int EFBxScale;
static int EFByScale;
static int s_recordWidth;
static int s_recordHeight;
static bool s_skipSwap = false;
#ifndef _WIN32