X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=pico%2Fpico_int.h;h=e61c1f7ede13e6f1ec7bc533be3231ffbaee7e94;hb=3b7088981e85f80156199530fc810bba63d0ba7a;hp=bfdf73ae365ea7195582a122044e1ea6b544e974;hpb=19886062f1a36f70b1f01d58f3fa1b79162defac;p=picodrive.git diff --git a/pico/pico_int.h b/pico/pico_int.h index bfdf73a..e61c1f7 100644 --- a/pico/pico_int.h +++ b/pico/pico_int.h @@ -757,6 +757,7 @@ void p32x_m68k_poll_event(unsigned int flags); void p32x_sh2_poll_event(SH2 *sh2, unsigned int flags, unsigned int m68k_cycles); // 32x/draw.c +void PicoDrawSetOutFormat32x(pdso_t which, int use_32x_line_mode); void FinalizeLine32xRGB555(int sh, int line); void PicoDraw32xLayer(int offs, int lines, int mdbg); void PicoDraw32xLayerMdOnly(int offs, int lines); @@ -784,7 +785,6 @@ void p32x_pwm_schedule_sh2(SH2 *sh2); #define PicoFrame32x() #define PicoUnload32x() #define Pico32xStateLoaded() -#define PicoDraw32xSetFrameMode(...) #define FinalizeLine32xRGB555 NULL #define p32x_pwm_update(...) #define p32x_timers_recalc() @@ -802,7 +802,11 @@ static __inline int isspace_(int c) // emulation event logging #ifndef EL_LOGMASK -#define EL_LOGMASK 0 +# ifdef __x86_64__ // HACK +# define EL_LOGMASK (EL_STATUS|EL_IDLE|EL_ANOMALY) +# else +# define EL_LOGMASK (EL_STATUS) +# endif #endif #define EL_HVCNT 0x00000001 /* hv counter reads */