mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-06 00:58:16 +00:00
31 lines
863 B
Diff
31 lines
863 B
Diff
From 7a30aa387f92d7423ddc7d0ee703c23fcb7f2322 Mon Sep 17 00:00:00 2001
|
|
From: Thomas Crider <gloriouseggroll@gmail.com>
|
|
Date: Tue, 12 Dec 2023 07:02:33 -0500
|
|
Subject: [PATCH] remove 720p forced restriction
|
|
|
|
---
|
|
src/steamcompmgr.cpp | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
diff --git a/src/steamcompmgr.cpp b/src/steamcompmgr.cpp
|
|
index 6add8f4..1898d13 100644
|
|
--- a/src/steamcompmgr.cpp
|
|
+++ b/src/steamcompmgr.cpp
|
|
@@ -5647,6 +5647,13 @@ handle_property_notify(xwayland_ctx_t *ctx, XPropertyEvent *ev)
|
|
size_t server_idx = size_t{ xwayland_mode_ctl[ 0 ] };
|
|
int width = xwayland_mode_ctl[ 1 ];
|
|
int height = xwayland_mode_ctl[ 2 ];
|
|
+
|
|
+ if ( g_nOutputWidth != 1280 && width == 1280 )
|
|
+ {
|
|
+ width = g_nOutputWidth;
|
|
+ height = g_nOutputHeight;
|
|
+ }
|
|
+
|
|
bool allowSuperRes = !!xwayland_mode_ctl[ 3 ];
|
|
|
|
if ( !allowSuperRes )
|
|
--
|
|
2.43.0
|
|
|