Changed from config files from being user-centric to system. Some refactoring. Added install script

This commit is contained in:
amazing-username
2018-07-23 21:30:52 -04:00
parent 63ff22973b
commit 0777990b5e
11 changed files with 37 additions and 51 deletions
-4
View File
@@ -19,13 +19,9 @@ IncreaseVolume::IncreaseVolume()
void IncreaseVolume::newVolume()
{
if ((volume + AFFECTAMOUNT) < playBackEnd)
{
volume = volume + AFFECTAMOUNT;
}
else
{
volume = playBackEnd;
}
}
void IncreaseVolume::updateVolume()
{