diff options
author | notaz | 2012-01-16 23:49:36 +0200 |
---|---|---|
committer | notaz | 2012-01-19 01:42:10 +0200 |
commit | 0507e4f1e5c28ea0e5214b32ed1f6f571f7b8066 (patch) | |
tree | 49dc097b5050fa50457ff0e7766103e4dcd74421 /plugins/gpu-gles | |
parent | 13326d3e8422568b7f5528e7b8878b2f496ea652 (diff) | |
download | pcsx_rearmed-0507e4f1e5c28ea0e5214b32ed1f6f571f7b8066.tar.gz pcsx_rearmed-0507e4f1e5c28ea0e5214b32ed1f6f571f7b8066.tar.bz2 pcsx_rearmed-0507e4f1e5c28ea0e5214b32ed1f6f571f7b8066.zip |
gpu-gles: schtruck/fpse merge: don't delay gl init
Diffstat (limited to 'plugins/gpu-gles')
-rw-r--r-- | plugins/gpu-gles/gpuPlugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gpu-gles/gpuPlugin.c b/plugins/gpu-gles/gpuPlugin.c index 54147ef..fcc8f8b 100644 --- a/plugins/gpu-gles/gpuPlugin.c +++ b/plugins/gpu-gles/gpuPlugin.c @@ -509,7 +509,7 @@ long CALLBACK GPUopen(int hwndGPU) // lGPUstatusRet = 0x74000000;
// with some emus, we could do the OGL init right here... oh my
-// if(bIsFirstFrame) GLinitialize();
+ if(bIsFirstFrame) GLinitialize();
return 0;
}
|