1
0
mirror of synced 2024-11-24 15:40:22 +01:00

Fix playback volume being reset (#127)

・Now actually the game reads SongPlaybackLevel from its config
This commit is contained in:
L1m0n3 2022-01-15 21:31:03 +09:00 committed by GitHub
parent 89a9a35b64
commit d02ced45b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) ) )
{