Skip to content

Commit

Permalink
&
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorcelli committed Dec 31, 2024
1 parent 8415a85 commit 277c4ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/rf/rf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1636,7 +1636,7 @@ void rf_scan_copy() {
if(bruceConfig.devMode && !OnlyRAW) options.push_back({ "Only RAW", [&]() { ReadRAW=true; OnlyRAW=true; } });
else if(bruceConfig.devMode && OnlyRAW) options.push_back({ "RAW+Decode", [&]() { ReadRAW=true; OnlyRAW=false; } });
options.push_back({ "Close Menu", [&]() { option =-1; } });
options.push_back({ "Main Menu", [=]() { returnToMenu=true; } });
options.push_back({ "Main Menu", [&]() { returnToMenu=true; } });

delay(200);
loopOptions(options);
Expand Down

0 comments on commit 277c4ad

Please sign in to comment.