Skip to content
Snippets Groups Projects
Commit 351f010c authored by Lioncash's avatar Lioncash
Browse files

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).
parent fe3bf4f0
No related branches found
No related tags found
No related merge requests found
......@@ -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");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment