mlib updates

This commit is contained in:
RogueMaster
2022-10-07 02:28:33 -04:00
parent e42ca55552
commit abf1de4722
25 changed files with 155 additions and 160 deletions

View File

@@ -58,12 +58,12 @@ void chip8_scene_work_on_enter(void* context) {
chip8_set_file_name(app->chip8_view, app->file_name);
string_t file_tmp;
string_init(file_tmp);
FuriString* file_tmp;
file_tmp = furi_string_alloc();
string_printf(file_tmp, "%s", string_get_cstr(app->file_name));
furi_string_printf(file_tmp, "%s", furi_string_get_cstr(app->file_name));
FURI_LOG_I("chip8_scene_work_on_enter", "file_name: %s", string_get_cstr(file_tmp));
FURI_LOG_I("chip8_scene_work_on_enter", "file_name: %s", furi_string_get_cstr(file_tmp));
FURI_LOG_I("chip8_scene_work_on_enter", "START SET BACKUP SCREEN");
chip8_set_backup_screen(app->chip8_view, app->backup_screen);