mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 13:31:27 +12: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);
|
infinity_figure& get_figure_by_order(u8 order_added);
|
||||||
u8 derive_figure_position(u8 position);
|
u8 derive_figure_position(u8 position);
|
||||||
|
|
||||||
u32 random_a;
|
u32 random_a = 0;
|
||||||
u32 random_b;
|
u32 random_b = 0;
|
||||||
u32 random_c;
|
u32 random_c = 0;
|
||||||
u32 random_d;
|
u32 random_d = 0;
|
||||||
|
|
||||||
u8 m_figure_order = 0;
|
u8 m_figure_order = 0;
|
||||||
std::queue<std::array<u8, 32>> m_figure_added_removed_responses;
|
std::queue<std::array<u8, 32>> m_figure_added_removed_responses;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue