diff options
| author | flacs <tilkax@gmail.com> | 2015-09-20 03:30:46 +0200 |
|---|---|---|
| committer | flacs <tilkax@gmail.com> | 2015-09-20 03:30:46 +0200 |
| commit | 403df299a65bf91e31db94bdeba3bcf4290983e3 (patch) | |
| tree | 19313b72d7b81be3462262cf8a4102d9271163b4 /Source/Core/VideoBackends/Software/SWmain.cpp | |
| parent | 1c502b76a55e459f1226deb15404a6180b9820f2 (diff) | |
| parent | c976e14277aa70eaeb4fe6115137645a2a77b507 (diff) | |
Merge pull request #3066 from degasus/master
GLInterface: Fix VideoSW on linux + OSX (v2)
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWmain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp index 93dd37f03f..12713bcc4e 100644 --- a/Source/Core/VideoBackends/Software/SWmain.cpp +++ b/Source/Core/VideoBackends/Software/SWmain.cpp @@ -78,7 +78,7 @@ bool VideoSoftware::Initialize(void *window_handle) InitInterface(); GLInterface->SetMode(GLInterfaceMode::MODE_DETECT); - if (!GLInterface->Create(window_handle)) + if (!GLInterface->Create(window_handle, false)) { INFO_LOG(VIDEO, "GLInterface::Create failed."); return false; |
