mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
Whitespace
svn-id: r18296
This commit is contained in:
parent
9ffe00b78d
commit
4fbb6c29cb
@ -726,7 +726,7 @@ int32 IMuseInternal::doCommand(int numargs, int a[]) {
|
||||
return -1;
|
||||
else {
|
||||
warning("IMuse doCommand(6) - setImuseMasterVolume (%d)", a[1]);
|
||||
return setImuseMasterVolume((a[1] << 1) |(a[1] ? 0 : 1)); // Convert from 0-127 to 0-255
|
||||
return setImuseMasterVolume((a[1] << 1) | (a[1] ? 0 : 1)); // Convert from 0-127 to 0-255
|
||||
}
|
||||
case 7:
|
||||
warning("IMuse doCommand(7) - getMasterVolume (%d)", a[1]);
|
||||
|
@ -1120,7 +1120,7 @@ void Player::transitionParameters() {
|
||||
}
|
||||
|
||||
uint Player::getBeatIndex() {
|
||||
return (_parser ?(_parser->getTick() / TICKS_PER_BEAT + 1) : 0);
|
||||
return (_parser ? (_parser->getTick() / TICKS_PER_BEAT + 1) : 0);
|
||||
}
|
||||
|
||||
void Player::removePart(Part *part) {
|
||||
|
Loading…
Reference in New Issue
Block a user