diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-03-30 17:16:21 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-03-30 17:16:21 +0200 |
commit | 3060e3ee000ddb12a78d8008f641b724ce7b07df (patch) | |
tree | d1b765a00fcd0f338d4b96c1a519063e336c9bf0 /src/GsrInfo.cpp | |
parent | 2b63fa048c0f7ca32dc3e96df18fd8d76df19c8c (diff) |
Add high performance encoding option (for amd) in settings page. Requires gsr version >= 5.3.4
Diffstat (limited to 'src/GsrInfo.cpp')
-rw-r--r-- | src/GsrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GsrInfo.cpp b/src/GsrInfo.cpp index 5f8e00d..5af6397 100644 --- a/src/GsrInfo.cpp +++ b/src/GsrInfo.cpp @@ -11,7 +11,7 @@ namespace gsr { } bool GsrVersion::operator>=(const GsrVersion &other) const { - return major >= other.major || (major == other.major && minor >= other.minor) || (major == other.major && minor == other.minor && patch >= other.patch); + return major > other.major || (major == other.major && minor > other.minor) || (major == other.major && minor == other.minor && patch >= other.patch); } bool GsrVersion::operator<(const GsrVersion &other) const { |