diff options
| author | 2018-10-09 11:20:54 +1100 | |
|---|---|---|
| committer | 2018-10-09 11:20:54 +1100 | |
| commit | a47c1c77e6dad8ebd4dfc49d76ef39b605a1ef69 (patch) | |
| tree | 49895f4b29732728fe373a8831fae83167adad63 /src | |
| parent | Fixups for softlock (diff) | |
| download | yuzu-a47c1c77e6dad8ebd4dfc49d76ef39b605a1ef69.tar.gz yuzu-a47c1c77e6dad8ebd4dfc49d76ef39b605a1ef69.tar.xz yuzu-a47c1c77e6dad8ebd4dfc49d76ef39b605a1ef69.zip | |
EffectOutStatus padding is now in hex
Diffstat (limited to 'src')
| -rw-r--r-- | src/audio_core/audio_renderer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/audio_renderer.h b/src/audio_core/audio_renderer.h index 4662c8722..046417da3 100644 --- a/src/audio_core/audio_renderer.h +++ b/src/audio_core/audio_renderer.h | |||
| @@ -171,7 +171,7 @@ static_assert(sizeof(EffectInStatus) == 0xc0, "EffectInStatus is an invalid size | |||
| 171 | 171 | ||
| 172 | struct EffectOutStatus { | 172 | struct EffectOutStatus { |
| 173 | EffectStatus state; | 173 | EffectStatus state; |
| 174 | INSERT_PADDING_BYTES(15); | 174 | INSERT_PADDING_BYTES(0xf); |
| 175 | }; | 175 | }; |
| 176 | static_assert(sizeof(EffectOutStatus) == 0x10, "EffectOutStatus is an invalid size"); | 176 | static_assert(sizeof(EffectOutStatus) == 0x10, "EffectOutStatus is an invalid size"); |
| 177 | 177 | ||