[Scummvm-cvs-logs] CVS: scummvm/simon saveload.cpp,1.1.2.1,1.1.2.2
Max Horn
fingolfin at users.sourceforge.net
Thu Dec 16 11:19:03 CET 2004
Update of /cvsroot/scummvm/scummvm/simon
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13914/simon
Modified Files:
Tag: release-0-7-0
saveload.cpp
Log Message:
Using errno isn't really portable; don't have time to fix this properly right now
Index: saveload.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/saveload.cpp,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- saveload.cpp 16 Dec 2004 12:35:39 -0000 1.1.2.1
+++ saveload.cpp 16 Dec 2004 19:17:45 -0000 1.1.2.2
@@ -21,6 +21,13 @@
#include "stdafx.h"
+#ifndef _WIN32_WCE
+// FIXME TODO FIXME: Using errno is not really portable!
+// We should get rid of this, possibly by adding (clear)ioFailed methods
+// to the SaveFile class.
+#include <errno.h>
+#endif
+
#include "gui/about.h"
#include "gui/message.h"
More information about the Scummvm-git-logs
mailing list