Explorar el Código

service/vi: Correct initial width and height values

Based off RE, it appears that almost all display types seem to use
1920x1080 except for a few (null display, edid display).
Lioncash hace 7 años
padre
commit
351f010cfc
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/core/hle/service/vi/vi.cpp

+ 2 - 2
src/core/hle/service/vi/vi.cpp

@@ -44,10 +44,10 @@ struct DisplayInfo {
     u64 max_layers{1};
 
     /// Maximum width in pixels.
-    u64 width{1280};
+    u64 width{1920};
 
     /// Maximum height in pixels.
-    u64 height{720};
+    u64 height{1080};
 };
 static_assert(sizeof(DisplayInfo) == 0x60, "DisplayInfo has wrong size");