diff options
| author | flacs <tilkax@gmail.com> | 2015-09-17 19:21:16 +0200 |
|---|---|---|
| committer | flacs <tilkax@gmail.com> | 2015-09-17 19:21:16 +0200 |
| commit | e4dfb2f6bf7ca16c575a5723951c5f90868f76d1 (patch) | |
| tree | fff4f534bf8f72b590c2e316921c0e7d61ff1f93 /Source/Core/VideoBackends/Software/SWmain.cpp | |
| parent | edae1d3bcb4383abd344757c4eab13d975a5e153 (diff) | |
| parent | 48279c18402c04923a683e4a0488f8ad419b9b9a (diff) | |
Merge pull request #3054 from degasus/master
GLInterface: Fix VideoSW on linux + OSX
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; |
