Update of /cvsroot/moeng/BBRpg/src
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv6800/src
Modified Files:
rpg.cpp
Log Message:
Added font_sansserif_8 to engine.dat.
Index: rpg.cpp
===================================================================
RCS file: /cvsroot/moeng/BBRpg/src/rpg.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** rpg.cpp 7 Feb 2007 18:26:25 -0000 1.13
--- rpg.cpp 8 Feb 2007 00:03:32 -0000 1.14
***************
*** 175,179 ****
// Set font to use
DATAFILE *temp = find_datafile_object(engine_data, "SmallFont");
! if (temp) {engine_font = ((FONT *)temp->dat);}
console.log(CON_LOG, CON_ALWAYS, "Loading module \"data\"...");
--- 175,183 ----
// Set font to use
DATAFILE *temp = find_datafile_object(engine_data, "SmallFont");
! if (temp) {
! engine_font = ((FONT *)temp->dat);
! } else {
! console.log(CON_LOG, CON_ALWAYS, "Warning: SmallFont not found!");
! }
console.log(CON_LOG, CON_ALWAYS, "Loading module \"data\"...");
|