Skip to content

Commit

Permalink
v2.2.2
Browse files Browse the repository at this point in the history
ugh
  • Loading branch information
DavidJCobb committed Aug 3, 2023
1 parent f5b1b9c commit 0cf8edc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions native/src/ReachVariantTool/helpers/steam.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ namespace {
if (this->root.children.empty())
return {};
const auto* base = this->root.children[0];
if (cobb::strieq_ascii(base->name, "libraryfolders"))
if (!cobb::strieq_ascii(base->name, "libraryfolders"))
return {};

std::string app_id_string;
Expand Down Expand Up @@ -221,7 +221,7 @@ namespace {
if (this->root.children.empty())
return {};
const auto* base = this->root.children[0];
if (cobb::strieq_ascii(base->name, "AppState"))
if (!cobb::strieq_ascii(base->name, "AppState"))
return {};

for (auto* child : base->children) {
Expand Down
2 changes: 1 addition & 1 deletion native/src/ReachVariantTool/rvt_version_macros.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Edit these to control the embedded version information.
#define VER_MAJOR 2
#define VER_MINOR 2
#define VER_PATCH 1
#define VER_PATCH 2
#define VER_BUILD 0

0 comments on commit 0cf8edc

Please sign in to comment.