Note that SDL_HAPTIC_GAIN_MAX should remain an environment variable.

This commit is contained in:
Sam Lantinga
2024-08-03 11:50:23 -07:00
parent 0da346f129
commit 6f399c3beb
2 changed files with 2 additions and 1 deletions

View File

@@ -539,7 +539,7 @@ int SDL_SetHapticGain(SDL_Haptic *haptic, int gain)
return SDL_SetError("Haptic: Gain must be between 0 and 100.");
}
/* We use the envvar to get the maximum gain. */
/* The user can use an environment variable to override the max gain. */
env = SDL_getenv("SDL_HAPTIC_GAIN_MAX");
if (env) {
max_gain = SDL_atoi(env);