Skip to content

Commit

Permalink
gui: Increase Kyuhen splashscreen timer and bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel16 committed Apr 16, 2021
1 parent 6312530 commit 4c744b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ include("${VITASDK}/share/vita.cmake" REQUIRED)

set(VITA_APP_NAME "VITA Homebrew Sorter")
set(VITA_TITLEID "VITAHBSRT")
set(VITA_VERSION "01.01")
set(VITA_VERSION "01.10")

add_definitions(-DAPP_VERSION="${VITA_VERSION}")

Expand Down
2 changes: 1 addition & 1 deletion sce_sys/livearea/contents/template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<frame id="frame4">
<liveitem>
<text align="left" text-align="left" word-wrap="off" ellipsis="on">
<str size="18" color="#ffffff" shadow="on">v1.00</str>
<str size="18" color="#ffffff" shadow="on">v1.10</str>
</text>
</liveitem>
</frame>
Expand Down
2 changes: 1 addition & 1 deletion source/gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ namespace GUI {
ImGui::PopStyleVar();
Renderer::End(ImVec4(0.05f, 0.07f, 0.13f, 1.00f));

if ((now.tick - start.tick) >= 3000000)
if ((now.tick - start.tick) >= 10000000)
done = true;
}
}
Expand Down

0 comments on commit 4c744b5

Please sign in to comment.