From 6d9f0455d95e27bec0a5b7ed0aa462926a0ab4e9 Mon Sep 17 00:00:00 2001 From: jugeeya Date: Sun, 6 Aug 2023 12:15:36 -0700 Subject: [PATCH] Fix menu option, probably --- training_mod_consts/src/options.rs | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/training_mod_consts/src/options.rs b/training_mod_consts/src/options.rs index 2f9c8fa..1d3fa42 100644 --- a/training_mod_consts/src/options.rs +++ b/training_mod_consts/src/options.rs @@ -1423,12 +1423,18 @@ pub enum RecordingFrames { F180 = 0x10, F210 = 0x20, F240 = 0x40, - F300 = 0x80, - F360 = 0x100, - F420 = 0x200, - F480 = 0x400, - F540 = 0x800, - F600 = 0x1000, + F270 = 0x80, + F300 = 0x100, + F330 = 0x200, + F360 = 0x400, + F390 = 0x800, + F420 = 0x1000, + F450 = 0x2000, + F480 = 0x4000, + F510 = 0x8000, + F540 = 0x10000, + F570 = 0x20000, + F600 = 0x40000, } impl RecordingFrames { @@ -1442,13 +1448,18 @@ impl RecordingFrames { F180 => "180", F210 => "210", F240 => "240", + F270 => "270", F300 => "300", + F330 => "330", F360 => "360", + F390 => "390", F420 => "420", + F450 => "450", F480 => "480", + F510 => "510", F540 => "540", + F570 => "570", F600 => "600", - _ => return None, }) }