From 5c0305a8ebc5e92a884f14c23185828772b960fd Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Mon, 26 Feb 2024 13:36:14 -0600 Subject: [PATCH] fix: RoomPreset recall now works like expected The expected method for recalling a preset is to select a preset with the `CodecRoomPresetSelect` method, then call either the `CodecRoomPresetStore` method to save a preset or the `CodecRoomPresetRecall` method to recall a preset. --- src/CiscoRoomOsCodec.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CiscoRoomOsCodec.cs b/src/CiscoRoomOsCodec.cs index 975b9c6..1ef328b 100644 --- a/src/CiscoRoomOsCodec.cs +++ b/src/CiscoRoomOsCodec.cs @@ -6170,7 +6170,7 @@ public void CodecRoomPresetSelect(int preset) else { _selectedPreset = preset; - CiscoRoomPresetRecall(); + // CiscoRoomPresetRecall(); } }