summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorpixel <pixel>2007-07-27 14:10:19 +0000
committerpixel <pixel>2007-07-27 14:10:19 +0000
commit84c92ab61304209ccd83935c7745b5d535109456 (patch)
tree93d086f24dff673945c33ebed6a8ab9227f84418 /lib
parent843a14ea70938381fc61cd9054f0b30bb08c990e (diff)
Win32 is evil, and doesn't have case sensitive filenames...
Diffstat (limited to 'lib')
-rw-r--r--lib/base.cc2
-rw-r--r--lib/contextmenu.cc6
-rw-r--r--lib/engine.cc2
-rw-r--r--lib/font.cc4
-rw-r--r--lib/glbase.cc2
-rw-r--r--lib/glfont.cc2
-rw-r--r--lib/glshape.cc6
-rw-r--r--lib/glsprite.cc2
-rw-r--r--lib/glwidgets.cc2
-rw-r--r--lib/inputtext.cc6
-rw-r--r--lib/mcolor.cc2
-rw-r--r--lib/mogltk-lua-bindings.cc2
-rw-r--r--lib/shape.cc8
-rw-r--r--lib/sprite.cc2
-rw-r--r--lib/texture.cc4
-rw-r--r--lib/widgets.cc6
16 files changed, 29 insertions, 29 deletions
diff --git a/lib/base.cc b/lib/base.cc
index a9d31a5..c8d1d80 100644
--- a/lib/base.cc
+++ b/lib/base.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: base.cc,v 1.17 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: base.cc,v 1.18 2007-07-27 14:10:19 pixel Exp $ */
#include <stdio.h>
#include <SDL.h>
diff --git a/lib/contextmenu.cc b/lib/contextmenu.cc
index 97cec1e..1d6380c 100644
--- a/lib/contextmenu.cc
+++ b/lib/contextmenu.cc
@@ -17,14 +17,14 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: contextmenu.cc,v 1.3 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: contextmenu.cc,v 1.4 2007-07-27 14:10:19 pixel Exp $ */
#include <SDL.h>
#include <vector>
#include <Input.h>
-#include "Font.h"
+#include "font.h"
#include "engine.h"
-#include "Widgets.h"
+#include "widgets.h"
#include "sprite.h"
/***********************************
diff --git a/lib/engine.cc b/lib/engine.cc
index d49574c..eef9f98 100644
--- a/lib/engine.cc
+++ b/lib/engine.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: engine.cc,v 1.31 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: engine.cc,v 1.32 2007-07-27 14:10:19 pixel Exp $ */
#include <SDL.h>
#include <Input.h>
diff --git a/lib/font.cc b/lib/font.cc
index fbd871d..324debd 100644
--- a/lib/font.cc
+++ b/lib/font.cc
@@ -17,13 +17,13 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: font.cc,v 1.19 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: font.cc,v 1.20 2007-07-27 14:10:19 pixel Exp $ */
#include <stdarg.h>
#include <SDL.h>
#include <Input.h>
#include "base.h"
-#include "Font.h"
+#include "font.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/glbase.cc b/lib/glbase.cc
index 922a263..7665bb1 100644
--- a/lib/glbase.cc
+++ b/lib/glbase.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glbase.cc,v 1.24 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: glbase.cc,v 1.25 2007-07-27 14:10:19 pixel Exp $ */
#include <stdio.h>
#include <SDL.h>
diff --git a/lib/glfont.cc b/lib/glfont.cc
index 4bc9a0e..6ea33e6 100644
--- a/lib/glfont.cc
+++ b/lib/glfont.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glfont.cc,v 1.26 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: glfont.cc,v 1.27 2007-07-27 14:10:20 pixel Exp $ */
#include "engine.h"
#include "glbase.h"
diff --git a/lib/glshape.cc b/lib/glshape.cc
index 6c0b2d9..66b6093 100644
--- a/lib/glshape.cc
+++ b/lib/glshape.cc
@@ -17,12 +17,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glshape.cc,v 1.17 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: glshape.cc,v 1.18 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL_opengl.h>
#include "glbase.h"
-#include "glShape.h"
-#include "Texture.h"
+#include "glshape.h"
+#include "texture.h"
#include "glfont.h"
#include "engine.h"
diff --git a/lib/glsprite.cc b/lib/glsprite.cc
index 49db695..31193df 100644
--- a/lib/glsprite.cc
+++ b/lib/glsprite.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glsprite.cc,v 1.11 2004-11-27 21:48:03 pixel Exp $ */
+/* $Id: glsprite.cc,v 1.12 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL.h>
#include "glbase.h"
diff --git a/lib/glwidgets.cc b/lib/glwidgets.cc
index c306b73..83c2aa9 100644
--- a/lib/glwidgets.cc
+++ b/lib/glwidgets.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glwidgets.cc,v 1.10 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: glwidgets.cc,v 1.11 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL.h>
#include <SDL_opengl.h>
diff --git a/lib/inputtext.cc b/lib/inputtext.cc
index 9a63c07..23b05a1 100644
--- a/lib/inputtext.cc
+++ b/lib/inputtext.cc
@@ -17,14 +17,14 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: inputtext.cc,v 1.4 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: inputtext.cc,v 1.5 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL.h>
#include <vector>
#include <Input.h>
-#include "Font.h"
+#include "font.h"
#include "engine.h"
-#include "Widgets.h"
+#include "widgets.h"
#include "sprite.h"
/**********************
diff --git a/lib/mcolor.cc b/lib/mcolor.cc
index a8c6d16..979827f 100644
--- a/lib/mcolor.cc
+++ b/lib/mcolor.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: mcolor.cc,v 1.10 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: mcolor.cc,v 1.11 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL.h>
#include <SDL_opengl.h>
diff --git a/lib/mogltk-lua-bindings.cc b/lib/mogltk-lua-bindings.cc
index fc32beb..086bc09 100644
--- a/lib/mogltk-lua-bindings.cc
+++ b/lib/mogltk-lua-bindings.cc
@@ -17,6 +17,6 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: mogltk-lua-bindings.cc,v 1.1 2006-02-09 17:12:44 pixel Exp $ */
+/* $Id: mogltk-lua-bindings.cc,v 1.2 2007-07-27 14:10:20 pixel Exp $ */
#include <mogltk-lua-bindings.h> \ No newline at end of file
diff --git a/lib/shape.cc b/lib/shape.cc
index d817895..d5f6ccc 100644
--- a/lib/shape.cc
+++ b/lib/shape.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: shape.cc,v 1.22 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: shape.cc,v 1.23 2007-07-27 14:10:20 pixel Exp $ */
#include <math.h>
#include <limits.h>
@@ -26,9 +26,9 @@
#include <generic.h>
#include "engine.h"
#include "base.h"
-#include "Shape.h"
-#include "Texture.h"
-#include "Font.h"
+#include "shape.h"
+#include "texture.h"
+#include "font.h"
#define ENTER bool flag = Enter()
#define LEAVE Leave(flag)
diff --git a/lib/sprite.cc b/lib/sprite.cc
index 8b93a0f..7066a76 100644
--- a/lib/sprite.cc
+++ b/lib/sprite.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: sprite.cc,v 1.17 2006-10-28 16:50:47 pixel Exp $ */
+/* $Id: sprite.cc,v 1.18 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL.h>
#include "engine.h"
diff --git a/lib/texture.cc b/lib/texture.cc
index edcc303..52f0743 100644
--- a/lib/texture.cc
+++ b/lib/texture.cc
@@ -17,13 +17,13 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: texture.cc,v 1.16 2007-07-17 02:48:00 pixel Exp $ */
+/* $Id: texture.cc,v 1.17 2007-07-27 14:10:20 pixel Exp $ */
#include <sys/types.h>
#include <SDL.h>
#include <SDL_opengl.h>
#include <generic.h>
-#include "Texture.h"
+#include "texture.h"
#include "engine.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
diff --git a/lib/widgets.cc b/lib/widgets.cc
index 5fd76e2..639a67f 100644
--- a/lib/widgets.cc
+++ b/lib/widgets.cc
@@ -17,14 +17,14 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: widgets.cc,v 1.21 2006-10-28 16:50:47 pixel Exp $ */
+/* $Id: widgets.cc,v 1.22 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL.h>
#include <vector>
#include <Input.h>
-#include "Font.h"
+#include "font.h"
#include "engine.h"
-#include "Widgets.h"
+#include "widgets.h"
#include "sprite.h"
#ifdef HAVE_CONFIG_H