mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
Fix uninitialized variable warnings (C26495)
This commit is contained in:
parent
089eab96d7
commit
8802f96b7e
30 changed files with 182 additions and 180 deletions
|
@ -21,9 +21,9 @@ public:
|
|||
struct DisassembleResult
|
||||
{
|
||||
std::string text;
|
||||
u32 entry_address;
|
||||
u32 instruction_count;
|
||||
u32 code_size;
|
||||
u32 entry_address = 0;
|
||||
u32 instruction_count = 0;
|
||||
u32 code_size = 0;
|
||||
};
|
||||
|
||||
std::unique_ptr<HostDisassembler> GetNewDisassembler(const std::string& arch);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue