Add default MSAA and Anisotropic values to .ini generation (#717)

This commit is contained in:
Christian Semmler 2025-09-24 12:51:47 -07:00 committed by GitHub
parent c7e2fbc023
commit d890e3db58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1087,6 +1087,8 @@ bool IsleApp::LoadConfig()
iniparser_set(dict, "isle:Exclusive Y Resolution", SDL_itoa(m_exclusiveYRes, buf, 10));
iniparser_set(dict, "isle:Exclusive Framerate", SDL_itoa(m_exclusiveFrameRate, buf, 10));
iniparser_set(dict, "isle:Frame Delta", SDL_itoa(m_frameDelta, buf, 10));
iniparser_set(dict, "isle:MSAA", SDL_itoa(m_msaaSamples, buf, 10));
iniparser_set(dict, "isle:Anisotropic", SDL_itoa(m_anisotropic, buf, 10));
#ifdef EXTENSIONS
iniparser_set(dict, "extensions", NULL);