pingus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pingus-CVS] CVS: Games/Pingus/src/editor editor.cxx,1.35,1.36 editor.hx


From: grumbel
Subject: [Pingus-CVS] CVS: Games/Pingus/src/editor editor.cxx,1.35,1.36 editor.hxx,1.19,1.20
Date: 3 Oct 2002 12:33:11 -0000

Update of /usr/local/cvsroot/Games/Pingus/src/editor
In directory dark:/tmp/cvs-serv12772/editor

Modified Files:
        editor.cxx editor.hxx 
Log Message:
- some more tweaks/fixes to the demo recording, should be mostly working know
- added fastforward and scrolling to the demo player (its a dirty hack, but 
should be enough for some testing)
- misc other cleanup

Index: editor.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editor/editor.cxx,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- editor.cxx  28 Sep 2002 11:52:23 -0000      1.35
+++ editor.cxx  3 Oct 2002 12:33:09 -0000       1.36
@@ -155,6 +155,14 @@
   move_objects();
 }
 
+bool
+Editor::draw (GraphicContext& gc)
+{
+  draw();
+  UNUSED_ARG(gc);
+  return true;
+}
+
 void
 Editor::draw ()
 {

Index: editor.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editor/editor.hxx,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- editor.hxx  1 Oct 2002 21:48:32 -0000       1.19
+++ editor.hxx  3 Oct 2002 12:33:09 -0000       1.20
@@ -119,7 +119,7 @@
   CL_GUIManager* get_gui_manager ();
 
   // overloaded Screen stuff
-  bool draw (GraphicContext& gc) { draw(); return true; }
+  bool draw (GraphicContext& gc);
   void draw ();
   void update (const GameDelta& delta);
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]