From 6ff17cec01c413751160fd7d793815625706395a Mon Sep 17 00:00:00 2001 From: Pixelguin <11445611+Pixelguin@users.noreply.github.com> Date: Sun, 4 Sep 2022 10:10:04 -0700 Subject: [PATCH] Change "Duration is not aligned properly" message from Warning to Info This message appears whenever P4G starts if any mod has an audio track that is not exactly the same duration as the track it is replacing. It is confusing users who believe something is wrong with their modding setup and has no value to anyone except creators, who should be testing their mods before release regardless. --- modloader/Redirectors/Xact/VirtualWaveBankEntry.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modloader/Redirectors/Xact/VirtualWaveBankEntry.cs b/modloader/Redirectors/Xact/VirtualWaveBankEntry.cs index f6ce351..ff74aab 100644 --- a/modloader/Redirectors/Xact/VirtualWaveBankEntry.cs +++ b/modloader/Redirectors/Xact/VirtualWaveBankEntry.cs @@ -262,7 +262,7 @@ private bool ParseTxth( string path ) } if ( durationAligned > txth.Duration ) - mLogger.Warning( $"[{path} Duration is not aligned properly, it may not play correctly ingame!" ); + mLogger.Info( $"[{path} Duration is not aligned properly, it may not play correctly ingame!" ); Native->FlagsAndDuration.Duration.Set( ( uint )durationAligned ); }