[Scummvm-cvs-logs] SF.net SVN: scummvm: [30383] scummvm/branches/branch-0-11-0/engines

chrilith at users.sourceforge.net chrilith at users.sourceforge.net
Thu Jan 10 22:19:34 CET 2008


Revision: 30383
          http://scummvm.svn.sourceforge.net/scummvm/?rev=30383&view=rev
Author:   chrilith
Date:     2008-01-10 13:19:34 -0800 (Thu, 10 Jan 2008)

Log Message:
-----------
System includes must be before project headers to prevent compilation errors on PalmOS

Modified Paths:
--------------
    scummvm/branches/branch-0-11-0/engines/agos/agos.cpp
    scummvm/branches/branch-0-11-0/engines/gob/inter.cpp

Modified: scummvm/branches/branch-0-11-0/engines/agos/agos.cpp
===================================================================
--- scummvm/branches/branch-0-11-0/engines/agos/agos.cpp	2008-01-10 21:04:09 UTC (rev 30382)
+++ scummvm/branches/branch-0-11-0/engines/agos/agos.cpp	2008-01-10 21:19:34 UTC (rev 30383)
@@ -23,8 +23,8 @@
  *
  */
 
+#include <time.h>	// for AGOSEngine::getTime()
 
-
 #include "common/config-manager.h"
 #include "common/file.h"
 #include "common/system.h"
@@ -38,8 +38,6 @@
 #include "sound/mididrv.h"
 #include "sound/mods/protracker.h"
 
-#include <time.h>	// for AGOSEngine::getTime()
-
 using Common::File;
 
 namespace AGOS {

Modified: scummvm/branches/branch-0-11-0/engines/gob/inter.cpp
===================================================================
--- scummvm/branches/branch-0-11-0/engines/gob/inter.cpp	2008-01-10 21:04:09 UTC (rev 30382)
+++ scummvm/branches/branch-0-11-0/engines/gob/inter.cpp	2008-01-10 21:19:34 UTC (rev 30383)
@@ -23,6 +23,7 @@
  *
  */
 
+#include <time.h>	// FIXME: for Inter::renewTimeInVars()
 
 #include "common/endian.h"
 
@@ -36,8 +37,6 @@
 #include "gob/scenery.h"
 #include "gob/sound.h"
 
-#include <time.h>	// FIXME: for Inter::renewTimeInVars()
-
 namespace Gob {
 
 Inter::Inter(GobEngine *vm) : _vm(vm) {


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list