Sync system apps --nobuild

This commit is contained in:
Willy-JL
2023-12-08 22:22:31 +00:00
parent 76534b04a4
commit efbcdc2a8b
38 changed files with 1490 additions and 413 deletions

View File

@@ -87,7 +87,10 @@ HexViewer* hex_viewer_app_alloc() {
void hex_viewer_app_free(HexViewer* app) {
furi_assert(app);
if(app->model->stream) buffered_file_stream_close(app->model->stream);
if(app->model->stream) {
buffered_file_stream_close(app->model->stream);
stream_free(app->model->stream);
}
// Scene manager
scene_manager_free(app->scene_manager);