--- np2/x11/np2.h 2007/01/12 16:41:25 1.14 +++ np2/x11/np2.h 2007/02/04 11:51:13 1.17 @@ -54,13 +54,14 @@ typedef struct { BYTE I286SAVE; BYTE snddrv; - char audiodev[MAX_PATH]; char MIDIDEV[2][MAX_PATH]; UINT32 MIDIWAIT; BYTE mouse_move_ratio; BYTE disablemmx; + BYTE drawinterp; + BYTE F11KEY; } NP2OSCFG; @@ -77,6 +78,13 @@ enum { MMXFLAG_NOTSUPPORT = 2 }; +enum { + INTERP_NEAREST = 0, + INTERP_TILES = 1, + INTERP_BILINEAR = 2, + INTERP_HYPER = 3 +}; + #ifdef __cplusplus extern "C" { #endif @@ -85,6 +93,7 @@ extern "C" { extern volatile sig_atomic_t np2running; extern NP2OSCFG np2oscfg; extern BYTE scrnmode; +extern int ignore_fullscreen_mode; extern UINT framecnt; extern UINT waitcnt;