Skip to content

Commit

Permalink
Latest Release RM0210-1603-0.97.2-2707a31 on PATREON - MINOR VAR TYPE…
Browse files Browse the repository at this point in the history
… CHANGES
  • Loading branch information
RogueMaster committed Feb 12, 2024
1 parent 2523293 commit 1b29e4f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions ReadMe.md
Expand Up @@ -55,6 +55,7 @@ This software is for experimental purposes only and is not meant for any illegal
- OFW: [NFC: fix retry scene navigation logic #3439 (By gornekich)](https://github.com/flipperdevices/flipperzero-firmware/pull/3439) - Was Already In RM
- OFW: [Check universal remote files before loading #3438 (By gsurkov)](https://github.com/flipperdevices/flipperzero-firmware/pull/3438)
- OFW: [Fixed MyKey LockID #3412 (By zProAle)](https://github.com/flipperdevices/flipperzero-firmware/pull/3412) - Was Already In RM
- Minor var type changes for the coming OFW update [3254](https://github.com/flipperdevices/flipperzero-firmware/pull/3254) (By Willy-JL)
- To Be Merged OFW PRs: [3352](https://github.com/flipperdevices/flipperzero-firmware/pull/3352), [3302](https://github.com/flipperdevices/flipperzero-firmware/pull/3302), [3211](https://github.com/flipperdevices/flipperzero-firmware/pull/3211), [3366](https://github.com/flipperdevices/flipperzero-firmware/pull/3366), [3250](https://github.com/flipperdevices/flipperzero-firmware/pull/3250), [3402](https://github.com/flipperdevices/flipperzero-firmware/pull/3402), [3409](https://github.com/flipperdevices/flipperzero-firmware/pull/3409), [3406](https://github.com/flipperdevices/flipperzero-firmware/pull/3406), [3431](https://github.com/flipperdevices/flipperzero-firmware/pull/3431), [3254](https://github.com/flipperdevices/flipperzero-firmware/pull/3254) & [3429](https://github.com/flipperdevices/flipperzero-firmware/pull/3429)

<a name="release">
Expand Down
6 changes: 3 additions & 3 deletions applications/services/desktop/views/desktop_view_lock_menu.c
Expand Up @@ -88,11 +88,11 @@ void desktop_lock_menu_draw_callback(Canvas* canvas, void* model) {
canvas_set_color(canvas, ColorBlack);
canvas_set_font(canvas, FontBatteryPercent);

int x, y, w, h;
int8_t x, y, w, h;
bool selected, toggle;
bool enabled = false;
uint value = 0;
int total = 58;
uint8_t value = 0;
int8_t total = 58;
const Icon* icon = NULL;
for(size_t i = 0; i < DesktopLockMenuIndexTotalCount; ++i) {
selected = m->idx == i;
Expand Down
4 changes: 2 additions & 2 deletions applications/settings/cfw_app/cfw_app.c
Expand Up @@ -62,15 +62,15 @@ bool cfw_app_apply(CfwApp* app) {
while(flipper_format_delete_key(file, "Frequency"))
;
FrequencyList_it(it, app->subghz_static_freqs);
for(uint i = 0; i < FrequencyList_size(app->subghz_static_freqs); i++) {
for(size_t i = 0; i < FrequencyList_size(app->subghz_static_freqs); i++) {
flipper_format_write_uint32(
file, "Frequency", FrequencyList_get(app->subghz_static_freqs, i), 1);
}

if(!flipper_format_rewind(file)) break;
while(flipper_format_delete_key(file, "Hopper_frequency"))
;
for(uint i = 0; i < FrequencyList_size(app->subghz_hopper_freqs); i++) {
for(size_t i = 0; i < FrequencyList_size(app->subghz_hopper_freqs); i++) {
flipper_format_write_uint32(
file, "Hopper_frequency", FrequencyList_get(app->subghz_hopper_freqs, i), 1);
}
Expand Down

0 comments on commit 1b29e4f

Please sign in to comment.