Skip to content

Commit 1e5e5c6

Browse files
committed
Forgot to update the update checker
1 parent abe16f7 commit 1e5e5c6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/rendering/renderer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ std::vector<XrCompositionLayerQuad> RND_Renderer::Layer2D::FinishRendering(XrTim
505505
glm::quat headOrientation = ToGLM(spaceLocation.pose.orientation);
506506
glm::vec3 headPosition = ToGLM(spaceLocation.pose.position);
507507

508-
constexpr float DISTANCE = 1.35f;
508+
constexpr float DISTANCE = 1.5f;
509509
constexpr float LERP_SPEED = 0.05f;
510510

511511
if (CemuHooks::GetSettings().UIFollowsLookingDirection()) {
@@ -536,7 +536,7 @@ std::vector<XrCompositionLayerQuad> RND_Renderer::Layer2D::FinishRendering(XrTim
536536
const float height = aspectRatio <= 1.0f ? 1.0f / aspectRatio : 1.0f;
537537

538538
// todo: change space to head space if we want to follow the head
539-
constexpr float MENU_SIZE = 0.775f;
539+
constexpr float MENU_SIZE = 0.8f;
540540

541541
std::vector<XrCompositionLayerQuad> layers;
542542

src/utils/update_checker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#pragma comment(lib, "winhttp.lib")
1212

1313
namespace UpdateChecker {
14-
const std::string CURRENT_VERSION = "0.9.2";
14+
const std::string CURRENT_VERSION = "0.9.3";
1515

1616
static std::string TrimPrefixV(std::string v) {
1717
if (!v.empty() && (v[0] == 'v' || v[0] == 'V')) {

0 commit comments

Comments
 (0)