Removed some redundant #ifdef win32 includes. (This should have been part of my previous precompiled header changes.)

This commit is contained in:
wrenczes@gmail.com
2010-10-30 05:40:52 +00:00
parent fadd36c0c4
commit a88ea7cb54
2 changed files with 0 additions and 8 deletions

View File

@@ -5,10 +5,6 @@
using namespace std;
#if defined (WIN32)
#include <windows.h>
#endif
void Logger::Log(const char * text){
ofstream file (LOG_FILE,ios_base::app);
if (file){

View File

@@ -9,10 +9,6 @@
#include "WEvent.h"
#include "MTGAbility.h"
#if defined (WIN32)
#include <windows.h>
#endif
ManaCost * ManaCost::parseManaCost(string s, ManaCost * _manaCost, MTGCardInstance * c){
ManaCost * manaCost;