Browse Source

Fixed tone generation for Redbox (CA) to add second tone set to 0.0 to satisfy PR issue and to follow with Redbox (US) and Redbox (UK) data

Robert Menes 3 năm trước cách đây
mục cha
commit
db16f72771
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      dtmf_dolphin_data.c

+ 3 - 3
dtmf_dolphin_data.c

@@ -85,9 +85,9 @@ DTMFDolphinSceneData DTMFDolphinSceneDataRedboxCA = {
     .block = DTMF_DOLPHIN_TONE_BLOCK_REDBOX_CA,
     .tone_count = 3,
     .tones = {
-      {"Nickel",  2200.0, {0, 0, 5}, 1, 66, 0},
-      {"Dime",    2200.0, {1, 0, 5}, 2, 66, 66},
-      {"Quarter", 2200.0, {2, 0, 5}, 5, 33, 33},
+      {"Nickel",  2200.0, 0.0, {0, 0, 5}, 1, 66, 0},
+      {"Dime",    2200.0, 0.0, {1, 0, 5}, 2, 66, 66},
+      {"Quarter", 2200.0, 0.0, {2, 0, 5}, 5, 33, 33},
     }
 };