--- np2/x11/np2.c 2003/12/19 16:08:01 1.8 +++ np2/x11/np2.c 2004/02/18 06:52:34 1.13 @@ -31,7 +31,6 @@ #include "pccore.h" #include "dosio.h" #include "scrndraw.h" -#include "statsave.h" #include "timing.h" #include "toolkit.h" @@ -60,7 +59,7 @@ NP2OSCFG np2oscfg = { 0, /* paddingy */ 0, /* NOWAIT */ - 2, /* DRAW_SKIP */ + 0, /* DRAW_SKIP */ 0, /* DISPCLK */ @@ -82,6 +81,7 @@ NP2OSCFG np2oscfg = { 0, /* toolwin */ 0, /* keydisp */ 0, /* hostdrv_write */ + 0, /* jastsnd */ 0, /* I286SAVE */ SNDDRV_NODRV, /* snddrv */ @@ -126,6 +126,11 @@ char statpath[MAX_PATH]; #endif char fontname[1024] = FONTFACE; +#ifndef FONTNAME_DEFAULT +#define FONTNAME_DEFAULT "./default.ttf" +#endif +char fontfilename[MAX_PATH] = FONTNAME_DEFAULT; + char timidity_cfgfile_path[MAX_PATH]; BOOL use_shared_pixmap; @@ -196,10 +201,10 @@ flagload(const char* ext, const char* ti getstatfilename(path, ext, sizeof(path)); ret = statsave_check(path, buf, sizeof(buf)); - if (ret & (~NP2FLAG_DISKCHG)) { + if (ret & (~STATFLAG_DISKCHG)) { fprintf(stderr, "Couldn't restart\n"); rv = 1; - } else if ((!force) && (ret & NP2FLAG_DISKCHG)) { + } else if ((!force) && (ret & STATFLAG_DISKCHG)) { fprintf(stderr, "Conflict\n"); rv = 1; }