From 481eac71849d6fc17d47b039cc7ee61308c22a19 Mon Sep 17 00:00:00 2001 From: KentuckyCompass Date: Mon, 7 Sep 2015 16:44:34 -0700 Subject: [PATCH] more spaces around operators for readability --- Core/FileSystems/ISOFileSystem.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/FileSystems/ISOFileSystem.cpp b/Core/FileSystems/ISOFileSystem.cpp index e1fc0e70db..2f31318241 100644 --- a/Core/FileSystems/ISOFileSystem.cpp +++ b/Core/FileSystems/ISOFileSystem.cpp @@ -320,7 +320,7 @@ ISOFileSystem::TreeEntry *ISOFileSystem::GetFromPath(std::string path, bool catc { TreeEntry *ne = 0; std::string name = ""; - if (path.length()>0) + if (path.length() > 0) { const std::string firstPathComponent = path.substr(0, path.find_first_of('/')); for (size_t i = 0; i < e->children.size(); i++) @@ -416,7 +416,7 @@ u32 ISOFileSystem::OpenFile(std::string filename, FileAccess access, const char return 0; } - if (entry.file==&entireISO) + if (entry.file == &entireISO) entry.isBlockSectorMode = true; entry.seekPos = 0; @@ -682,7 +682,7 @@ PSPFileInfo ISOFileSystem::GetFileInfo(std::string filename) x.exists = true; x.type = entry->isDirectory ? FILETYPE_DIRECTORY : FILETYPE_NORMAL; x.isOnSectorSystem = true; - x.startSector = entry->startingPosition/2048; + x.startSector = entry->startingPosition / 2048; } return x; }