Fix playback volume being reset (#127)
・Now actually the game reads SongPlaybackLevel from its config
This commit is contained in:
parent
89a9a35b64
commit
d02ced45b2
@ -2470,6 +2470,10 @@ namespace TJAPlayer3
|
||||
else if( str3.Equals( nameof(SongPreviewLevel) ) )
|
||||
{
|
||||
this.SongPreviewLevel = C変換.n値を文字列から取得して範囲内に丸めて返す( str4, CSound.MinimumGroupLevel, CSound.MaximumGroupLevel, this.SongPreviewLevel );
|
||||
}
|
||||
else if ( str3.Equals( nameof(SongPlaybackLevel) ) )
|
||||
{
|
||||
this.SongPlaybackLevel = C変換.n値を文字列から取得して範囲内に丸めて返す( str4, CSound.MinimumGroupLevel, CSound.MaximumGroupLevel, this.SongPlaybackLevel );
|
||||
}
|
||||
else if( str3.Equals( nameof(KeyboardSoundLevelIncrement) ) )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user