mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 08:14:45 +02:00
Avoid a possibly uninitialized var.
This commit is contained in:
@@ -641,7 +641,7 @@ void ISOFileSystem::DoState(PointerWrap &p)
|
||||
p.Do(of.sectorStart);
|
||||
p.Do(of.openSize);
|
||||
|
||||
bool hasFile;
|
||||
bool hasFile = false;
|
||||
p.Do(hasFile);
|
||||
if (hasFile) {
|
||||
std::string path;
|
||||
|
||||
Reference in New Issue
Block a user