mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-03 09:23:19 +00:00
- restore accidentally deleted 'testmusicvol' CCMD.
This commit is contained in:
parent
3d55c76a89
commit
a0cffca3bb
1 changed files with 16 additions and 0 deletions
|
@ -270,6 +270,22 @@ void I_SetMusicVolume (double factor)
|
||||||
I_SetRelativeVolume((float)factor);
|
I_SetRelativeVolume((float)factor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//==========================================================================
|
||||||
|
//
|
||||||
|
// test a relative music volume
|
||||||
|
//
|
||||||
|
//==========================================================================
|
||||||
|
|
||||||
|
CCMD(testmusicvol)
|
||||||
|
{
|
||||||
|
if (argv.argc() > 1)
|
||||||
|
{
|
||||||
|
I_SetRelativeVolume((float)strtod(argv[1], nullptr));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
Printf("Current relative volume is %1.2f\n", relative_volume);
|
||||||
|
}
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
//
|
//
|
||||||
// STAT music
|
// STAT music
|
||||||
|
|
Loading…
Reference in a new issue