Fixes DMPS input name feedback on DMPS-4k. Need to check for NullStringOutputSig which was causing an exception

This commit is contained in:
Alex Johnson
2022-01-06 16:47:11 -05:00
parent 4650d17695
commit ce785ceb25
2 changed files with 24 additions and 1 deletions

View File

@@ -71,6 +71,11 @@ namespace PepperDash.Essentials.DM
Debug.Console(2, this, "Dmps Audio Controller Event Output: {0} EventId: {1}", args.Number, args.EventId.ToString());
switch (args.EventId)
{
case DMOutputEventIds.OutputVuFeedBackEventId:
{
//Frequently called event that isn't needed
break;
}
case DMOutputEventIds.MasterVolumeFeedBackEventId:
{
MasterVolumeLevel.VolumeLevelFeedback.FireUpdate();