diff --git a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net.cpp b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net.cpp index 66623f0797..9bf7c89602 100644 --- a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net.cpp +++ b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net.cpp @@ -28,11 +28,6 @@ was unavailable and prevent if from looking for shared2/wc24 files (and do a PPC it failed) */ -#ifdef _MSC_VER -#pragma warning(disable: 4748) -#pragma optimize("",off) -#endif - #include "WII_IPC_HLE_Device_es.h" #include "WII_IPC_HLE_Device_net.h" #include "../ConfigManager.h" @@ -1807,7 +1802,3 @@ bool CWII_IPC_HLE_Device_net_ip_top::IOCtlV(u32 CommandAddress) Memory::Write_U32(return_value, CommandAddress + 4); return true; } - -#ifdef _MSC_VER -#pragma optimize("",off) -#endif diff --git a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net.h b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net.h index 10e9e5f443..5a2a1f141c 100644 --- a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net.h +++ b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net.h @@ -5,11 +5,6 @@ #ifndef _WII_IPC_HLE_DEVICE_NET_H_ #define _WII_IPC_HLE_DEVICE_NET_H_ -#ifdef _MSC_VER -#pragma warning(disable: 4748) -#pragma optimize("",off) -#endif - #include "WII_IPC_HLE_Device.h" #ifdef _WIN32 @@ -739,8 +734,4 @@ private: #pragma pack(pop) }; -#ifdef _MSC_VER -#pragma optimize("",on) -#endif - #endif diff --git a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net_ssl.cpp b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net_ssl.cpp index f5bd082099..255acb4c9f 100644 --- a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net_ssl.cpp +++ b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net_ssl.cpp @@ -15,11 +15,6 @@ // Official SVN repository and contact information can be found at // http://code.google.com/p/dolphin-emu/ -#ifdef _MSC_VER -#pragma warning(disable: 4748) -#pragma optimize("",off) -#endif - #include "FileUtil.h" #include "WII_IPC_HLE_Device_net_ssl.h" #include "../Debugger/Debugger_SymbolMap.h" @@ -640,7 +635,3 @@ u32 CWII_IPC_HLE_Device_net_ssl::ExecuteCommand(u32 _Command, _BufferIn, BufferInSize, _BufferOut, BufferOutSize); return 0; } - -#ifdef _MSC_VER -#pragma optimize("",on) -#endif diff --git a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net_ssl.h b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net_ssl.h index 8a3f442ac9..426bef7562 100644 --- a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net_ssl.h +++ b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_net_ssl.h @@ -18,11 +18,6 @@ #ifndef _WII_IPC_HLE_DEVICE_NET_SSL_H_ #define _WII_IPC_HLE_DEVICE_NET_SSL_H_ -#ifdef _MSC_VER -#pragma warning(disable: 4748) -#pragma optimize("",off) -#endif - #include "WII_IPC_HLE_Device.h" #include @@ -106,8 +101,4 @@ private: u32 ExecuteCommandV(u32 _Parameter, SIOCtlVBuffer CommandBuffer); }; -#ifdef _MSC_VER -#pragma optimize("",off) -#endif - #endif