@@ -33,6 +33,7 @@ int main(int argc, char* argv[])
3333{
3434 const int version_major = 1 ;
3535 const int version_minor = 2 ;
36+ const int version_patch = 1 ;
3637 // Setup SDL
3738 // (Some versions of SDL before <2.0.10 appears to have performance/stalling issues on a minority of Windows systems,
3839 // depending on whether SDL_INIT_GAMECONTROLLER is enabled or disabled.. updating to the latest version of SDL is recommended!)
@@ -338,7 +339,7 @@ int main(int argc, char* argv[])
338339
339340 if (ImGui::BeginPopupModal (" About" , NULL , ImGuiWindowFlags_NoResize))
340341 {
341- ImGui::Text (" Flipper-Zero Animation Manager v%d.%d" , version_major, version_minor);
342+ ImGui::Text (" Flipper-Zero Animation Manager v%d.%d.%d " , version_major, version_minor, version_patch );
342343 ImGui::SetCursorPosY (ImGui::GetCursorPosY () + 10 .f );
343344 ImGui::Text (" Made with <3 by Ooggle" );
344345 ImGui::Text (" https://github.com/Ooggle/FlipperAnimationManager" ); // TODO: clickable link
@@ -376,7 +377,7 @@ int main(int argc, char* argv[])
376377 }
377378 ImGui::SameLine ();
378379 if (animations_wallet->get_is_folder_correct ())
379- ImGui::TextColored (ImVec4 (0 .f , 1 .f , 0 .f , 1 .00f ), " Sucess , %d animations loaded" , animations_wallet->animations_number );
380+ ImGui::TextColored (ImVec4 (0 .f , 1 .f , 0 .f , 1 .00f ), " Success , %d animations loaded" , animations_wallet->animations_number );
380381 else
381382 {
382383 ImGui::TextColored (ImVec4 (1 .f , 0 .f , 0 .f , 1 .00f ), " Failed, folder not found" );
0 commit comments