zzogl-pg: part two of fixing CreateWindow conflict; should compile in Windows without error now.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2793 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2010-03-29 21:15:49 +00:00
parent dc95fc1d6c
commit 03ea6e04d6
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ LRESULT WINAPI MsgProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam )
return DefWindowProc( hWnd, msg, wParam, lParam );
}
bool GLWindow::CreateGLWindow(void *pDisplay)
bool GLWindow::CreateWindow(void *pDisplay)
{
RECT rc, rcdesktop;
rc.left = 0; rc.top = 0;

View File

@ -547,7 +547,7 @@ s32 CALLBACK GSopen(void *pDsp, char *Title, int multithread)
LoadConfig();
strcpy(GStitle, Title);
err = GLWin.CreateGLWindow(pDsp);
err = GLWin.CreateWindow(pDsp);
if (!err)
{