Move ifdef at column 0.

This commit is contained in:
riccardom 2009-05-02 12:03:54 +00:00
parent 7bfbd6b887
commit 90eaff428d
1 changed files with 2 additions and 2 deletions

View File

@ -877,10 +877,10 @@ static bool savestate_load(std::istream* is)
if(!x && !SAV_silent_fail_flag)
{
printf("Error loading savestate. It failed halfway through;\nSince there is no savestate backup system, your current game session is wrecked");
#ifdef _MSC_VER
#ifdef _MSC_VER
//HACK! we really need a better way to handle this kind of feedback
MessageBox(0,"Error loading savestate. It failed halfway through;\nSince there is no savestate backup system, your current game session is wrecked",0,0);
#endif
#endif
return false;
}