diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2023-06-09 15:07:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-09 15:07:07 +0200 |
| commit | 8f51a9d2d8a88993167cd1c3b8d447bee1ca6407 (patch) | |
| tree | 31ea53fda80c4e7e4476cd2a16b17de89102b9c7 /Source/Core/VideoBackends/Software/SWmain.cpp | |
| parent | 092773ad0cd31cb0f3d111254e4e0bdb24f2c795 (diff) | |
| parent | ac48b2eea43164349e6b112604d44490a4d731c5 (diff) | |
Merge pull request #11699 from Pokechu22/gl-check-maximum-samples
OpenGL: Check the list of supported AA modes instead of hardcoding
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 8703ea4b4d..ccb040e8ad 100644 --- a/Source/Core/VideoBackends/Software/SWmain.cpp +++ b/Source/Core/VideoBackends/Software/SWmain.cpp @@ -62,7 +62,7 @@ std::optional<std::string> VideoSoftware::GetWarningMessage() const "really want to enable software rendering? If unsure, select 'No'."); } -void VideoSoftware::InitBackendInfo() +void VideoSoftware::InitBackendInfo(const WindowSystemInfo& wsi) { g_Config.backend_info.api_type = APIType::Nothing; g_Config.backend_info.MaxTextureSize = 16384; |
