libspark: fix volume-to-/proc/stb/avs/0/volume mapping

This commit is contained in:
martii
2012-11-01 11:45:05 +01:00
parent aca3da1f29
commit 241de088cb

View File

@@ -101,7 +101,11 @@ int map_volume(const int volume)
if (vol > 100)
vol = 100;
#ifdef MARTII
vol = 64 - vol * 64 / 100;
#else
vol = 63 - vol * 63 / 100;
#endif
return vol;
}