merged ppu code, added input+zapper, FDS/VS insert in menu
[fceu.git] / input.h
diff --git a/input.h b/input.h
index daaa304..7c0da59 100644 (file)
--- a/input.h
+++ b/input.h
@@ -3,7 +3,7 @@ typedef struct {
        void FP_FASTAPASS(1) (*Write)(uint8 v);
         void FP_FASTAPASS(1) (*Strobe)(int w);
        void FP_FASTAPASS(3) (*Update)(int w, void *data, int arg);
-       void FP_FASTAPASS(3) (*SLHook)(int w, uint8 *buf, int line);
+       void FP_FASTAPASS(3) (*SLHook)(int w, uint8 *bg, uint8 *spr, uint32 linets, int final);
        void FP_FASTAPASS(3) (*Draw)(int w, uint8 *buf, int arg);
 } INPUTC;
 
@@ -12,7 +12,7 @@ typedef struct {
        void FP_FASTAPASS(1) (*Write)(uint8 v);
        void (*Strobe)(void);
         void FP_FASTAPASS(2) (*Update)(void *data, int arg);
-        void FP_FASTAPASS(2) (*SLHook)(uint8 *buf, int line);
+        void FP_FASTAPASS(3) (*SLHook)(uint8 *bg, uint8 *spr, uint32 linets, int final);
         void FP_FASTAPASS(2) (*Draw)(uint8 *buf, int arg);
 } INPUTCFC;
 
@@ -20,7 +20,7 @@ void DrawInput(uint8 *buf);
 void UpdateInput(void);
 void InitializeInput(void);
 extern void (*PStrobe[2])(void);
-extern void (*InputScanlineHook)(uint8 *buf, int line);
+extern void (*InputScanlineHook)(uint8 *bg, uint8 *spr, uint32 linets, int final);
 
 #define FCEUNPCMD_RESET   0x01
 #define FCEUNPCMD_POWER   0x02