SDL and X11 works in gltext (silly error)

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1649 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-12-24 19:59:07 +00:00
parent 604b340504
commit 0ed845f3d4
1 changed files with 2 additions and 2 deletions

View File

@ -92,11 +92,11 @@ void OpenGL_Shutdown()
}
u32 OpenGL_GetWidth() {
return glWin->GetHeight();
return glWin->GetWidth();
}
u32 OpenGL_GetHeight() {
return glWin->GetWidth();
return glWin->GetHeight();
}
void OpenGL_SetSize(u32 width, u32 height) {