fixed some sdl compile errors
This commit is contained in:
parent
ab6b13fbd5
commit
70de69eacf
|
@ -23,9 +23,9 @@
|
||||||
|
|
||||||
#include "share.h"
|
#include "share.h"
|
||||||
#include "zapper.h"
|
#include "zapper.h"
|
||||||
#include "movie.h"
|
#include "../movie.h"
|
||||||
|
|
||||||
static ZAPPER ZD[2];
|
extern ZAPPER ZD[2];
|
||||||
|
|
||||||
static void ZapperFrapper(int w, uint8 *bg, uint8 *spr, uint32 linets, int final)
|
static void ZapperFrapper(int w, uint8 *bg, uint8 *spr, uint32 linets, int final)
|
||||||
{
|
{
|
||||||
|
|
|
@ -10,6 +10,6 @@ struct ZAPPER
|
||||||
uint64 zaphit;
|
uint64 zaphit;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern ZAPPER ZD[2];
|
static ZAPPER ZD[2];
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -44,7 +44,8 @@
|
||||||
#include "nsf.h"
|
#include "nsf.h"
|
||||||
#include "input.h"
|
#include "input.h"
|
||||||
#include "vsuni.h"
|
#include "vsuni.h"
|
||||||
#include "drawing.h"
|
#include "drawing.h"
|
||||||
|
#include "driver.h"
|
||||||
|
|
||||||
uint8 *XBuf=NULL;
|
uint8 *XBuf=NULL;
|
||||||
uint8 *XBackBuf=NULL;
|
uint8 *XBackBuf=NULL;
|
||||||
|
|
Loading…
Reference in New Issue