diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e9938930..29e1f5ec5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,7 @@ - VGM Tool: Fixed RGB firmware UART regression (by @WillyJL) - UL: Sub-GHz Playlist: Add support for custom modulation presets, remake with txrx library and support for dynamic signals, cleanup code (by @xMasterX) - RFID: Add DEZ10 representation to EM410X (by @realcatgirly) +- Furi: Re-enabled file paths in furi_check crash messages (by @WillyJL) - OFW: Infrared: Add text scroll to remote buttons (by @956MB) - Sub-GHz: - UL: Rename and extend Alarms ignore option with Hollarm & GangQi (by @xMasterX) diff --git a/furi/core/check.h b/furi/core/check.h index dfac95754..f64bf17d4 100644 --- a/furi/core/check.h +++ b/furi/core/check.h @@ -22,7 +22,7 @@ extern "C" { // When enabled will use file paths instead of "furi_check failed" #if !defined(FURI_RAM_EXEC) && !defined(FURI_DEBUG) -// #define __FURI_TRACE +#define __FURI_TRACE #endif // Flags instead of pointers will save ~4 bytes on furi_assert and furi_check calls.