Made staffBolumeDown work
All checks were successful
Generate Documentation / build (push) Successful in 21s

This commit is contained in:
2025-10-31 14:42:16 +01:00
parent 2991f58c7d
commit 5c1f331b0e
3 changed files with 12 additions and 12 deletions

View File

@@ -10,8 +10,8 @@ void staffVolumeUp(int *maxVolume);
/**
* @brief Used to decrease the maximum staff volume. If the max volume is set lower than what the current user volume is, then the user volume will also be lowered.
*
* @param maxVolume Variable used to keep track of the max volume
* @param maxVolume Pointer to the variable used to keep track of the max volume
* @param userVolume Pointer to the variable used to keep track of the user volume
* @param oldUserVolume Pointer to the variable used to keep track of the user volume when in mute or lowered
*/
void staffVolumeDown(int maxVolume, int *userVolume, int *oldUserVolume);
void staffVolumeDown(int *maxVolume, int *userVolume, int *oldUserVolume);