mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 05:17:52 +00:00
vi: Fix size for ListDisplays default display.
This commit is contained in:
parent
c3dd456d51
commit
0d1a99edf6
1 changed files with 2 additions and 2 deletions
|
@ -28,8 +28,8 @@ struct DisplayInfo {
|
|||
char display_name[0x40]{"Default"};
|
||||
u64 unknown_1{1};
|
||||
u64 unknown_2{1};
|
||||
u64 width{1920};
|
||||
u64 height{1080};
|
||||
u64 width{1280};
|
||||
u64 height{720};
|
||||
};
|
||||
static_assert(sizeof(DisplayInfo) == 0x60, "DisplayInfo has wrong size");
|
||||
|
||||
|
|
Loading…
Reference in a new issue