mirror of https://github.com/PCSX2/pcsx2.git
zzogl-pg: Having two functions with the same name, one of which is in a namespace, and one of which isn't, strikes me as a bad idea.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3760 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
4e03f0299b
commit
b15dd516c2
|
@ -84,7 +84,7 @@ char *libraryName = "ZZ Ogl PG ";
|
|||
|
||||
extern int g_nPixelShaderVer, g_nFrameRender, g_nFramesSkipped;
|
||||
|
||||
extern void ProcessMessages();
|
||||
extern void ProcessEvents();
|
||||
extern void WriteAA();
|
||||
extern void WriteBilinear();
|
||||
|
||||
|
@ -513,7 +513,7 @@ void CALLBACK GSvsync(int interlace)
|
|||
// !interlace? Hmmm... Fixme.
|
||||
ZeroGS::RenderCRTC(!interlace);
|
||||
|
||||
ProcessMessages();
|
||||
ProcessEvents();
|
||||
|
||||
if (--nToNextUpdate <= 0)
|
||||
{
|
||||
|
|
|
@ -254,7 +254,7 @@ void WriteBilinear()
|
|||
}
|
||||
|
||||
#ifdef _WIN32
|
||||
void ProcessMessages()
|
||||
void ProcessEvents()
|
||||
{
|
||||
MSG msg;
|
||||
|
||||
|
@ -322,7 +322,7 @@ void ProcessMessages()
|
|||
|
||||
#else // linux
|
||||
|
||||
void ProcessMessages()
|
||||
void ProcessEvents()
|
||||
{
|
||||
FUNCLOG
|
||||
|
||||
|
|
Loading…
Reference in New Issue