From 8479d5bdf7eac446271288611f749776a1510e84 Mon Sep 17 00:00:00 2001 From: Matthew Parlane Date: Sun, 18 Mar 2012 21:50:07 +1300 Subject: [PATCH] Some code clean up. I am terrible at coding styles... --- Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE.cpp | 33 +++++++++++++------- 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE.cpp b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE.cpp index 756e59305d..6c1ab5baef 100644 --- a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE.cpp +++ b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE.cpp @@ -85,7 +85,8 @@ void Init() _dbg_assert_msg_(WII_IPC_HLE, g_DeviceMap.empty(), "DeviceMap isnt empty on init"); u32 i; - for(i=0; iIsHardware()) { // close all files and delete their resources @@ -160,7 +162,7 @@ void Shutdown() void SetDefaultContentFile(const std::string& _rFilename) { TDeviceMap::const_iterator itr = g_DeviceMap.begin(); - while(itr != g_DeviceMap.end()) + while (itr != g_DeviceMap.end()) { if (itr->second && itr->second->GetDeviceName().find(std::string("/dev/es")) == 0) { @@ -185,7 +187,8 @@ void SDIO_EventNotify() int getFreeDeviceId() { u32 i; - for(i=0; iIsHardware() ? 1 : 0; p.Do(isHw); if (isHw) @@ -348,7 +355,7 @@ void ExecuteCommand(u32 _Address) break; } } - if(j == ES_MAX_COUNT) + if (j == ES_MAX_COUNT) { Memory::Write_U32(FS_EESEXHAUSTED, _Address + 4); CmdSuccess = true; @@ -382,7 +389,7 @@ void ExecuteCommand(u32 _Address) INFO_LOG(WII_IPC_FILEIO, "IOP: Open File (Device=%s, ID=%08x, Mode=%i)", pDevice->GetDeviceName().c_str(), DeviceID, Mode); - if(Memory::Read_U32(_Address + 4) == DeviceID) + if (Memory::Read_U32(_Address + 4) == DeviceID) g_FdMap[DeviceID] = pDevice; } @@ -553,8 +560,10 @@ void Update() void UpdateDevices() { // Check if a hardware device must be updated - for (TDeviceMap::const_iterator itr = g_DeviceMap.begin(); itr != g_DeviceMap.end(); ++itr) { - if (itr->second->IsOpened() && itr->second->Update()) { + for (TDeviceMap::const_iterator itr = g_DeviceMap.begin(); itr != g_DeviceMap.end(); ++itr) + { + if (itr->second->IsOpened() && itr->second->Update()) + { break; } }