fixed build errors in sdl version
This commit is contained in:
parent
3ea76ba08d
commit
db4fbe165f
|
@ -705,7 +705,7 @@ InitInputInterface()
|
||||||
attrib = 1;
|
attrib = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
FCEUI_SetInput(x, InputType[x], InputDPtr, attrib);
|
FCEUI_SetInput(x, (ESI)InputType[x], InputDPtr, attrib);
|
||||||
}
|
}
|
||||||
|
|
||||||
attrib = 0;
|
attrib = 0;
|
||||||
|
@ -749,7 +749,7 @@ InitInputInterface()
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
FCEUI_SetInputFC(InputType[2], InputDPtr, attrib);
|
FCEUI_SetInputFC((ESIFC)InputType[2], InputDPtr, attrib);
|
||||||
FCEUI_DisableFourScore(eoptions & EO_NOFOURSCORE);
|
FCEUI_DisableFourScore(eoptions & EO_NOFOURSCORE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
#include "types.h"
|
#include "../types.h"
|
||||||
#include "input.h"
|
#include "../input.h"
|
||||||
#include "fceu.h"
|
#include "../fceu.h"
|
||||||
#include "ppu.h"
|
#include "../ppu.h"
|
||||||
#include "x6502.h"
|
#include "../x6502.h"
|
||||||
#include "palette.h"
|
#include "../palette.h"
|
||||||
|
|
||||||
void FCEU_DrawCursor(uint8 *buf, int xc, int yc);
|
void FCEU_DrawCursor(uint8 *buf, int xc, int yc);
|
||||||
void FCEU_DrawGunSight(uint8 *buf, int xc, int yc);
|
void FCEU_DrawGunSight(uint8 *buf, int xc, int yc);
|
||||||
|
|
Loading…
Reference in New Issue