[Scummvm-cvs-logs] SF.net SVN: scummvm: [32984] scummvm/branches/gsoc2008-rtl/engines

cpage88 at users.sourceforge.net cpage88 at users.sourceforge.net
Thu Jul 10 07:15:20 CEST 2008


Revision: 32984
          http://scummvm.svn.sourceforge.net/scummvm/?rev=32984&view=rev
Author:   cpage88
Date:     2008-07-09 22:15:19 -0700 (Wed, 09 Jul 2008)

Log Message:
-----------
Removed unnecessary #inlcudes

Modified Paths:
--------------
    scummvm/branches/gsoc2008-rtl/engines/agi/agi.cpp
    scummvm/branches/gsoc2008-rtl/engines/agi/cycle.cpp
    scummvm/branches/gsoc2008-rtl/engines/agi/loader_v3.cpp
    scummvm/branches/gsoc2008-rtl/engines/agi/op_cmd.cpp
    scummvm/branches/gsoc2008-rtl/engines/agi/op_test.cpp
    scummvm/branches/gsoc2008-rtl/engines/agi/preagi.cpp
    scummvm/branches/gsoc2008-rtl/engines/agi/preagi_common.cpp
    scummvm/branches/gsoc2008-rtl/engines/agi/preagi_mickey.cpp
    scummvm/branches/gsoc2008-rtl/engines/agi/preagi_troll.cpp
    scummvm/branches/gsoc2008-rtl/engines/agi/preagi_winnie.cpp
    scummvm/branches/gsoc2008-rtl/engines/agi/saveload.cpp
    scummvm/branches/gsoc2008-rtl/engines/agos/animation.cpp
    scummvm/branches/gsoc2008-rtl/engines/agos/gfx.cpp
    scummvm/branches/gsoc2008-rtl/engines/agos/input.cpp
    scummvm/branches/gsoc2008-rtl/engines/agos/script.cpp
    scummvm/branches/gsoc2008-rtl/engines/agos/script_e1.cpp
    scummvm/branches/gsoc2008-rtl/engines/agos/script_s1.cpp
    scummvm/branches/gsoc2008-rtl/engines/cine/anim.cpp
    scummvm/branches/gsoc2008-rtl/engines/cine/cine.cpp
    scummvm/branches/gsoc2008-rtl/engines/cine/main_loop.cpp
    scummvm/branches/gsoc2008-rtl/engines/cine/prc.cpp
    scummvm/branches/gsoc2008-rtl/engines/cine/various.cpp
    scummvm/branches/gsoc2008-rtl/engines/gob/game_v1.cpp
    scummvm/branches/gsoc2008-rtl/engines/gob/game_v2.cpp
    scummvm/branches/gsoc2008-rtl/engines/gob/gob.cpp
    scummvm/branches/gsoc2008-rtl/engines/gob/inter.cpp
    scummvm/branches/gsoc2008-rtl/engines/gob/inter_bargon.cpp
    scummvm/branches/gsoc2008-rtl/engines/gob/inter_v1.cpp
    scummvm/branches/gsoc2008-rtl/engines/gob/inter_v2.cpp
    scummvm/branches/gsoc2008-rtl/engines/gob/mult.cpp
    scummvm/branches/gsoc2008-rtl/engines/gob/palanim.cpp
    scummvm/branches/gsoc2008-rtl/engines/gob/util.cpp
    scummvm/branches/gsoc2008-rtl/engines/gob/videoplayer.cpp
    scummvm/branches/gsoc2008-rtl/engines/kyra/gui_lok.cpp
    scummvm/branches/gsoc2008-rtl/engines/kyra/kyra_lok.cpp
    scummvm/branches/gsoc2008-rtl/engines/kyra/kyra_v1.cpp
    scummvm/branches/gsoc2008-rtl/engines/kyra/sequences_lok.cpp
    scummvm/branches/gsoc2008-rtl/engines/kyra/sprites.cpp
    scummvm/branches/gsoc2008-rtl/engines/kyra/text.cpp
    scummvm/branches/gsoc2008-rtl/engines/kyra/vqa.cpp

Modified: scummvm/branches/gsoc2008-rtl/engines/agi/agi.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agi/agi.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agi/agi.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -25,7 +25,6 @@
 
 
 #include "common/md5.h"
-#include "common/events.h"
 #include "common/file.h"
 #include "common/savefile.h"
 #include "common/config-manager.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/agi/cycle.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agi/cycle.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agi/cycle.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -24,8 +24,6 @@
  */
 
 
-#include "common/events.h"
-
 #include "agi/agi.h"
 #include "agi/sprite.h"
 #include "agi/graphics.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/agi/loader_v3.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agi/loader_v3.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agi/loader_v3.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -27,7 +27,6 @@
 #include "agi/lzw.h"
 
 #include "common/config-manager.h"
-#include "common/events.h"
 #include "common/fs.h"
 
 namespace Agi {

Modified: scummvm/branches/gsoc2008-rtl/engines/agi/op_cmd.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agi/op_cmd.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agi/op_cmd.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -26,8 +26,6 @@
 
 #include "base/version.h"
 
-#include "common/events.h"
-
 #include "agi/agi.h"
 #include "agi/sprite.h"
 #include "agi/graphics.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/agi/op_test.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agi/op_test.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agi/op_test.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -24,8 +24,6 @@
  */
 
 
-#include "common/events.h"
-
 #include "agi/agi.h"
 #include "agi/keyboard.h"
 #include "agi/opcodes.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/agi/preagi.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agi/preagi.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agi/preagi.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -23,7 +23,6 @@
  *
  */
 
-#include "common/events.h"
 #include "common/file.h"
 #include "common/savefile.h"
 #include "common/config-manager.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/agi/preagi_common.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agi/preagi_common.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agi/preagi_common.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -23,8 +23,6 @@
  *
  */
 
-#include "common/events.h"
-
 #include "agi/preagi.h"
 #include "agi/font.h"
 #include "agi/graphics.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/agi/preagi_mickey.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agi/preagi_mickey.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agi/preagi_mickey.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -23,7 +23,6 @@
  *
  */
 
-#include "common/events.h"
 #include "common/savefile.h"
 #include "common/stream.h"
 

Modified: scummvm/branches/gsoc2008-rtl/engines/agi/preagi_troll.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agi/preagi_troll.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agi/preagi_troll.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -30,8 +30,6 @@
 
 #include "graphics/cursorman.h"
 
-#include "common/events.h"
-
 namespace Agi {
 
 Troll::Troll(PreAgiEngine* vm) : _vm(vm) {

Modified: scummvm/branches/gsoc2008-rtl/engines/agi/preagi_winnie.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agi/preagi_winnie.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agi/preagi_winnie.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -29,7 +29,6 @@
 
 #include "graphics/cursorman.h"
 
-#include "common/events.h"
 #include "common/savefile.h"
 #include "common/stream.h"
 

Modified: scummvm/branches/gsoc2008-rtl/engines/agi/saveload.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agi/saveload.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agi/saveload.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -29,7 +29,6 @@
  */
 
 
-#include "common/events.h"
 #include "common/file.h"
 
 #include "agi/agi.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/agos/animation.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agos/animation.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agos/animation.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -26,7 +26,6 @@
 
 
 #include "common/endian.h"
-#include "common/events.h"
 #include "common/system.h"
 
 #include "graphics/cursorman.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/agos/gfx.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agos/gfx.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agos/gfx.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -26,7 +26,6 @@
 
 
 #include "common/system.h"
-#include "common/events.h"
 
 #include "graphics/surface.h"
 

Modified: scummvm/branches/gsoc2008-rtl/engines/agos/input.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agos/input.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agos/input.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -26,7 +26,6 @@
 
 
 #include "common/config-manager.h"
-#include "common/events.h"
 #include "common/file.h"
 
 #include "agos/intern.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/agos/script.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agos/script.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agos/script.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -28,7 +28,6 @@
 
 
 #include "common/system.h"
-#include "common/events.h"
 
 #include "agos/animation.h"
 #include "agos/agos.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/agos/script_e1.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agos/script_e1.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agos/script_e1.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -23,7 +23,6 @@
  *
  */
 
-#include "common/events.h"
 
 #include "agos/agos.h"
 #include "agos/vga.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/agos/script_s1.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/agos/script_s1.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/agos/script_s1.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -24,7 +24,6 @@
  */
 
 
-#include "common/events.h"
 #include "common/system.h"
 
 #include "agos/agos.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/cine/anim.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/cine/anim.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/cine/anim.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -28,7 +28,6 @@
  */
 
 #include "common/endian.h"
-#include "common/events.h"
 #include "common/stream.h"
 
 #include "cine/cine.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/cine/cine.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/cine/cine.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/cine/cine.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -23,7 +23,6 @@
  *
  */
 
-#include "common/events.h"
 #include "common/file.h"
 #include "common/savefile.h"
 #include "common/config-manager.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/cine/main_loop.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/cine/main_loop.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/cine/main_loop.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -25,7 +25,6 @@
 
 
 #include "common/scummsys.h"
-#include "common/events.h"
 #include "common/system.h"
 
 #include "cine/main_loop.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/cine/prc.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/cine/prc.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/cine/prc.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -25,7 +25,6 @@
 
 
 #include "common/endian.h"
-#include "common/events.h"
 
 #include "cine/cine.h"
 #include "cine/various.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/cine/various.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/cine/various.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/cine/various.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -25,7 +25,6 @@
 
 
 #include "common/endian.h"
-#include "common/events.h"
 #include "common/savefile.h"
 
 #include "cine/cine.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/gob/game_v1.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/gob/game_v1.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/gob/game_v1.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -24,7 +24,6 @@
  */
 
 #include "common/endian.h"
-#include "common/events.h"
 #include "common/stream.h"
 
 #include "gob/gob.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/gob/game_v2.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/gob/game_v2.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/gob/game_v2.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -24,7 +24,6 @@
  */
 
 #include "common/endian.h"
-#include "common/events.h"
 #include "common/stream.h"
 
 #include "gob/gob.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/gob/gob.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/gob/gob.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/gob/gob.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -24,7 +24,6 @@
  */
 
 #include "common/endian.h"
-#include "common/events.h"
 
 #include "base/plugins.h"
 #include "common/config-manager.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/gob/inter.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/gob/inter.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/gob/inter.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -26,7 +26,6 @@
 #include <time.h>	// FIXME: for Inter::renewTimeInVars()
 
 #include "common/endian.h"
-#include "common/events.h"
 
 #include "gob/gob.h"
 #include "gob/inter.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/gob/inter_bargon.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/gob/inter_bargon.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/gob/inter_bargon.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -24,7 +24,6 @@
  */
 
 #include "common/endian.h"
-#include "common/events.h"
 
 #include "gob/gob.h"
 #include "gob/inter.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/gob/inter_v1.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/gob/inter_v1.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/gob/inter_v1.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -24,7 +24,6 @@
  */
 
 #include "common/endian.h"
-#include "common/events.h"
 #include "common/file.h"
 
 #include "gob/gob.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/gob/inter_v2.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/gob/inter_v2.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/gob/inter_v2.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -24,7 +24,6 @@
  */
 
 #include "common/endian.h"
-#include "common/events.h"
 
 #include "sound/mixer.h"
 #include "sound/mods/infogrames.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/gob/mult.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/gob/mult.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/gob/mult.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -24,7 +24,6 @@
  */
 
 #include "common/endian.h"
-#include "common/events.h"
 
 #include "gob/gob.h"
 #include "gob/mult.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/gob/palanim.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/gob/palanim.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/gob/palanim.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -23,7 +23,6 @@
  *
  */
 
-#include "common/events.h"
 
 #include "gob/gob.h"
 #include "gob/palanim.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/gob/util.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/gob/util.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/gob/util.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -23,7 +23,6 @@
  *
  */
 
-#include "common/events.h"
 
 #include "gob/gob.h"
 #include "gob/util.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/gob/videoplayer.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/gob/videoplayer.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/gob/videoplayer.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -23,7 +23,6 @@
  *
  */
 
-#include "common/events.h"
 
 #include "gob/videoplayer.h"
 #include "gob/global.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/kyra/gui_lok.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/kyra/gui_lok.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/kyra/gui_lok.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -34,7 +34,6 @@
 
 #include "common/config-manager.h"
 #include "common/savefile.h"
-#include "common/events.h"
 #include "common/system.h"
 
 namespace Kyra {

Modified: scummvm/branches/gsoc2008-rtl/engines/kyra/kyra_lok.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/kyra/kyra_lok.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/kyra/kyra_lok.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -26,7 +26,6 @@
 #include "kyra/kyra_lok.h"
 
 #include "common/file.h"
-#include "common/events.h"
 #include "common/system.h"
 #include "common/savefile.h"
 

Modified: scummvm/branches/gsoc2008-rtl/engines/kyra/kyra_v1.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/kyra/kyra_v1.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/kyra/kyra_v1.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -24,7 +24,6 @@
  */
 
 #include "common/config-manager.h"
-#include "common/events.h"
 
 #include "sound/mididrv.h"
 #include "sound/mixer.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/kyra/sequences_lok.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/kyra/sequences_lok.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/kyra/sequences_lok.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -34,7 +34,6 @@
 #include "kyra/text.h"
 #include "kyra/timer.h"
 
-#include "common/events.h"
 #include "common/system.h"
 #include "common/savefile.h"
 

Modified: scummvm/branches/gsoc2008-rtl/engines/kyra/sprites.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/kyra/sprites.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/kyra/sprites.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -28,7 +28,6 @@
 #include "common/stream.h"
 #include "common/util.h"
 #include "common/system.h"
-#include "common/events.h"
 #include "kyra/screen.h"
 #include "kyra/kyra_lok.h"
 #include "kyra/sprites.h"

Modified: scummvm/branches/gsoc2008-rtl/engines/kyra/text.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/kyra/text.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/kyra/text.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -29,7 +29,6 @@
 #include "kyra/screen.h"
 #include "kyra/text.h"
 
-#include "common/events.h"
 #include "common/system.h"
 #include "common/endian.h"
 

Modified: scummvm/branches/gsoc2008-rtl/engines/kyra/vqa.cpp
===================================================================
--- scummvm/branches/gsoc2008-rtl/engines/kyra/vqa.cpp	2008-07-10 02:00:54 UTC (rev 32983)
+++ scummvm/branches/gsoc2008-rtl/engines/kyra/vqa.cpp	2008-07-10 05:15:19 UTC (rev 32984)
@@ -32,7 +32,6 @@
 // The jung2.vqa movie does work, but only thanks to a grotesque hack.
 
 
-#include "common/events.h"
 #include "common/system.h"
 #include "sound/audiostream.h"
 #include "sound/mixer.h"


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