aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/vi/vi.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-11-05 16:55:11 -0500
committerGitHub <noreply@github.com>2019-11-05 16:55:11 -0500
commit4dc068a90c58e6204173af20f1a6ef29b48ddb28 (patch)
tree16d0f4aa4c4a11222c6950b3ad60e7d1d9905036 /src/core/hle/service/vi/vi.cpp
parentae6eb618920c6f4d924673b523b64de19f7feaf7 (diff)
parent1bdae0fe29f87daa81d2aba052a10a709b87485a (diff)
Merge pull request #3065 from bunnei/zero-init-padding
common_func: Use std::array for INSERT_PADDING_* macros.
Diffstat (limited to 'src/core/hle/service/vi/vi.cpp')
-rw-r--r--src/core/hle/service/vi/vi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp
index 199b30635..611cecc20 100644
--- a/src/core/hle/service/vi/vi.cpp
+++ b/src/core/hle/service/vi/vi.cpp
@@ -45,7 +45,7 @@ struct DisplayInfo {
/// Whether or not the display has a limited number of layers.
u8 has_limited_layers{1};
- INSERT_PADDING_BYTES(7){};
+ INSERT_PADDING_BYTES(7);
/// Indicates the total amount of layers supported by the display.
/// @note This is only valid if has_limited_layers is set.