Merge remote-tracking branch 'origin/main'

This commit is contained in:
Hosted Weblate 2021-11-23 19:26:48 +01:00
commit 39eefc62f5
No known key found for this signature in database
GPG Key ID: A3FAAA06E6569B4C
1 changed files with 1 additions and 1 deletions

2
main.c
View File

@ -678,7 +678,7 @@ STATIC void __attribute__ ((noinline)) run_boot_py(safe_mode_t safe_mode) {
FATFS *fs = &vfs->fatfs;
boot_output = NULL;
bool write_boot_output = (common_hal_mcu_processor_get_reset_reason() == RESET_REASON_POWER_ON);
bool write_boot_output = true;
FIL boot_output_file;
if (f_open(fs, &boot_output_file, CIRCUITPY_BOOT_OUTPUT_FILE, FA_READ) == FR_OK) {
char *file_contents = m_new(char, boot_text.alloc);