diff options
author | Alexander Baldeck <alexander@archlinux.org> | 2004-12-19 17:07:33 +0000 |
---|---|---|
committer | Alexander Baldeck <alexander@archlinux.org> | 2004-12-19 17:07:33 +0000 |
commit | cbdcd71c294fba40cc172b9bc55f528a34e0528f (patch) | |
tree | b7d6d8dc08925f618d19ed203610da9cbf399bde /src/main.cpp | |
parent | b5eb7cc46994a62932c608f8cc7cda02ccf46718 (diff) | |
download | mana-cbdcd71c294fba40cc172b9bc55f528a34e0528f.tar.gz mana-cbdcd71c294fba40cc172b9bc55f528a34e0528f.tar.bz2 mana-cbdcd71c294fba40cc172b9bc55f528a34e0528f.tar.xz mana-cbdcd71c294fba40cc172b9bc55f528a34e0528f.zip |
removed alfont usage (obsolete dependency now)
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index 67a307a3..a15615f6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -238,8 +238,6 @@ void init_engine() { error("Unable to install timer"); if(install_mouse()==-1) error("Unable to install mouse"); - if(alfont_init()!=ALFONT_OK) - error("Unable to install AllegroFont"); buffer = create_bitmap(800, 600); if(!buffer) @@ -263,7 +261,6 @@ void init_engine() { /** Clear the engine */ void exit_engine() { gui_exit(); - //alfont_exit(); destroy_bitmap(buffer); allegro_exit(); } |