mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
rsx: default initialize RsxDisplayInfo
This commit is contained in:
parent
88d0b7d135
commit
474baca6d8
1 changed files with 4 additions and 4 deletions
|
@ -115,10 +115,10 @@ struct RsxReports
|
|||
|
||||
struct RsxDisplayInfo
|
||||
{
|
||||
be_t<u32> offset;
|
||||
be_t<u32> pitch;
|
||||
be_t<u32> width;
|
||||
be_t<u32> height;
|
||||
be_t<u32> offset{0};
|
||||
be_t<u32> pitch{0};
|
||||
be_t<u32> width{0};
|
||||
be_t<u32> height{0};
|
||||
|
||||
bool valid() const
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue