From d4bfc3f2255f16b4d5d3ff8805478c8b07bc7aa1 Mon Sep 17 00:00:00 2001 From: MX <10697207+xMasterX@users.noreply.github.com> Date: Sun, 14 May 2023 20:19:47 +0300 Subject: [PATCH] Fix debugging --- lib/toolbox/version.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/toolbox/version.c b/lib/toolbox/version.c index ae3dc851a..70386d96d 100644 --- a/lib/toolbox/version.c +++ b/lib/toolbox/version.c @@ -16,11 +16,11 @@ struct Version { const char* git_hash; const char* git_branch; const char* build_date; - const char* custom_flipper_name; const char* version; // Payload bits and pieces const uint8_t target; const bool build_is_dirty; + const char* custom_flipper_name; }; /* version of current running firmware (bootloader/flipper) */ @@ -31,7 +31,6 @@ static Version version = { .git_hash = GIT_COMMIT, .git_branch = GIT_BRANCH, .build_date = BUILD_DATE, - .custom_flipper_name = NULL, .version = VERSION #ifdef FURI_RAM_EXEC " (RAM)" @@ -39,6 +38,7 @@ static Version version = { , .target = TARGET, .build_is_dirty = BUILD_DIRTY, + .custom_flipper_name = NULL, }; const Version* version_get(void) {