summaryrefslogtreecommitdiff
path: root/lib/engine.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/engine.cc')
-rw-r--r--lib/engine.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/engine.cc b/lib/engine.cc
index c372f0b..d49574c 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.30 2006-02-09 17:04:58 pixel Exp $ */
+/* $Id: engine.cc,v 1.31 2006-10-28 16:50:46 pixel Exp $ */
#include <SDL.h>
#include <Input.h>
@@ -36,7 +36,7 @@ int mogltk::engine::mx, mogltk::engine::my, mogltk::engine::mz = 0, mogltk::engi
int mogltk::engine::frames, mogltk::engine::locked = 0;
double mogltk::engine::curfps = -1;
Uint32 mogltk::engine::curticks;
-mogltk::widget * mogltk::engine::root = 0;
+mogltk::Widget * mogltk::engine::root = 0;
mogltk::glbase * mogltk::engine::glbase_o = 0;
mogltk::base * mogltk::engine::base_o = 0;
@@ -142,8 +142,8 @@ int mogltk::engine::postsetup() throw(GeneralException) {
mogltk::FixedFont = new mogltk::glfont(&Input("fixed-font.bin"));
Sprite::Cursor = new mogltk::glSprite(&Input("cursor.rgba"), 25, 25);
} else {
- mogltk::SystemFont = new mogltk::font(&Input("font.bin"));
- mogltk::FixedFont = new mogltk::font(&Input("fixed-font.bin"));
+ mogltk::SystemFont = new mogltk::Font(&Input("font.bin"));
+ mogltk::FixedFont = new mogltk::Font(&Input("fixed-font.bin"));
Sprite::Cursor = new mogltk::Sprite(&Input("cursor.rgba"), 25, 25);
}