Skip to content

Commit

Permalink
fix: RoomPreset recall now works like expected
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
andrew-welker committed Feb 26, 2024
1 parent 0c83d0c commit 5c0305a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CiscoRoomOsCodec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6170,7 +6170,7 @@ public void CodecRoomPresetSelect(int preset)
else
{
_selectedPreset = preset;
CiscoRoomPresetRecall();
// CiscoRoomPresetRecall();
}
}

Expand Down

0 comments on commit 5c0305a

Please sign in to comment.