mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
static analysis: uninitialized variables
This commit is contained in:
parent
815a4e7dc1
commit
e8463403f5
1 changed files with 4 additions and 4 deletions
|
@ -43,10 +43,10 @@ private:
|
|||
infinity_figure& get_figure_by_order(u8 order_added);
|
||||
u8 derive_figure_position(u8 position);
|
||||
|
||||
u32 random_a;
|
||||
u32 random_b;
|
||||
u32 random_c;
|
||||
u32 random_d;
|
||||
u32 random_a = 0;
|
||||
u32 random_b = 0;
|
||||
u32 random_c = 0;
|
||||
u32 random_d = 0;
|
||||
|
||||
u8 m_figure_order = 0;
|
||||
std::queue<std::array<u8, 32>> m_figure_added_removed_responses;
|
||||
|
|
Loading…
Add table
Reference in a new issue