Revert "Add high performance encoding option (for amd) in settings page. Requires gsr version >= 5.3.4"

This reverts commit 3060e3ee00.
This commit is contained in:
dec05eba
2025-03-30 22:30:47 +02:00
parent 3060e3ee00
commit c7080e5d99
9 changed files with 11 additions and 41 deletions

View File

@@ -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 {