aboutsummaryrefslogtreecommitdiff
path: root/src/GsrInfo.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-03-30 22:30:47 +0200
committerdec05eba <dec05eba@protonmail.com>2025-03-30 22:30:47 +0200
commitc7080e5d99bf77e432e6c900e64489b78a233f28 (patch)
treeb9e42f59d1585ac5d5eb0aa053660bb5b7ad03eb /src/GsrInfo.cpp
parent3060e3ee000ddb12a78d8008f641b724ce7b07df (diff)
Revert "Add high performance encoding option (for amd) in settings page. Requires gsr version >= 5.3.4"
This reverts commit 3060e3ee000ddb12a78d8008f641b724ce7b07df.
Diffstat (limited to 'src/GsrInfo.cpp')
-rw-r--r--src/GsrInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GsrInfo.cpp b/src/GsrInfo.cpp
index 5af6397..5f8e00d 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 {