10 lines
162 B
C++
10 lines
162 B
C++
#include <staffFunctions.h>
|
|
#include <constants.h>
|
|
|
|
void staffVolumeUp(int *maxVolume)
|
|
{
|
|
if (*maxVolume < 64)
|
|
{
|
|
*maxVolume += STAFF_STEPS;
|
|
}
|
|
} |