1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Fix loss of precision in X11 device info.

(cherry picked from commit 9369b37f1f)
This commit is contained in:
Marcel Admiraal
2020-04-10 07:40:14 +01:00
committed by Rémi Verschelde
parent 5bd603a542
commit b4ab045444

View File

@@ -664,10 +664,10 @@ bool OS_X11::refresh_device_info() {
bool absolute_mode = false;
int resolution_x = 0;
int resolution_y = 0;
int range_min_x = 0;
int range_min_y = 0;
int range_max_x = 0;
int range_max_y = 0;
double range_min_x = 0;
double range_min_y = 0;
double range_max_x = 0;
double range_max_y = 0;
int pressure_resolution = 0;
int tilt_resolution_x = 0;
int tilt_resolution_y = 0;