mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Fix all uninitialized variable warnings (C26495)
This commit is contained in:
@ -85,11 +85,11 @@ enum
|
||||
|
||||
namespace File
|
||||
{
|
||||
// FileSystem tree node/
|
||||
// FileSystem tree node
|
||||
struct FSTEntry
|
||||
{
|
||||
bool isDirectory;
|
||||
u64 size; // File length, or for directories, recursive count of children
|
||||
bool isDirectory = false;
|
||||
u64 size = 0; // File length, or for directories, recursive count of children
|
||||
std::string physicalName; // Name on disk
|
||||
std::string virtualName; // Name in FST names table
|
||||
std::vector<FSTEntry> children;
|
||||
|
Reference in New Issue
Block a user