summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/vi/vi.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp
index caef7e695..27e7ce800 100644
--- a/src/core/hle/service/vi/vi.cpp
+++ b/src/core/hle/service/vi/vi.cpp
@@ -28,8 +28,8 @@ struct DisplayInfo {
28 char display_name[0x40]{"Default"}; 28 char display_name[0x40]{"Default"};
29 u64 unknown_1{1}; 29 u64 unknown_1{1};
30 u64 unknown_2{1}; 30 u64 unknown_2{1};
31 u64 width{1920}; 31 u64 width{1280};
32 u64 height{1080}; 32 u64 height{720};
33}; 33};
34static_assert(sizeof(DisplayInfo) == 0x60, "DisplayInfo has wrong size"); 34static_assert(sizeof(DisplayInfo) == 0x60, "DisplayInfo has wrong size");
35 35