From a2715d9d1c5748aeb802bd72e4f223a7ea63072f Mon Sep 17 00:00:00 2001 From: latot Date: Sat, 9 Jan 2016 17:13:37 -0300 Subject: [PATCH] other little change, join 2 in 1 --- Core/FileSystems/ISOFileSystem.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Core/FileSystems/ISOFileSystem.cpp b/Core/FileSystems/ISOFileSystem.cpp index c0ca17993144..2c99ea104edd 100644 --- a/Core/FileSystems/ISOFileSystem.cpp +++ b/Core/FileSystems/ISOFileSystem.cpp @@ -814,8 +814,7 @@ void ISOFileSystem::DoState(PointerWrap &p) bool hasFile = of.file != NULL; p.Do(hasFile); if (hasFile) { - std::string path = ""; - path = EntryFullPath(of.file); + std::string path = EntryFullPath(of.file); p.Do(path); } }