Skip to content

Commit 2eb57bb

Browse files
authored
Added Current Version To Header Of Settings Menu
(This should work, but I am having massive build issues ATM, if it doesn't build for whatever reason, it should just added " - " + DEF_CURRENT_APP_VER to line 711)
1 parent 2e257c1 commit 2eb57bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/scenes/setting_menu.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// clang-format off
1+
// clang-format off
22
#include "headers.hpp"
33
#include <functional>
44
#include <regex>
@@ -708,7 +708,7 @@ void Sem_init(void) {
708708
(new ScrollView(0, 0, 320, 0))
709709
->set_views({
710710
(new TextView(0, 0, 320, DEFAULT_FONT_INTERVAL + SMALL_MARGIN * 2))
711-
->set_text((std::function<std::string ()>) [] () { return LOCALIZED(UPDATE); })
711+
->set_text((std::function<std::string ()>) [] () { return LOCALIZED(UPDATE) + " - " + DEF_CURRENT_APP_VER; })
712712
->set_font_size(0.6, DEFAULT_FONT_INTERVAL)
713713
->set_text_offset(0, -2),
714714
(new TextView(0, 0, 320, DEFAULT_FONT_INTERVAL + SMALL_MARGIN))

0 commit comments

Comments
 (0)