SDL_CreateEnvironment() fills the environment with a non-zero parameter

This commit is contained in:
Sam Lantinga
2024-09-14 09:18:07 -07:00
parent 76c469910e
commit aa7357a14d
5 changed files with 9 additions and 9 deletions

View File

@@ -41,7 +41,7 @@ bool SDL_SYS_OpenURL(const char *url)
SDL_Process *process = NULL;
bool result = false;
env = SDL_CreateEnvironment(SDL_FALSE);
env = SDL_CreateEnvironment(true);
if (!env) {
goto done;
}