X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fcommon%2Femu.h;h=836d7d4b6d010537318e6a6ca1b75d5dc168190e;hb=b7d64dbdb78425b501093dfb137072459b5b3f0f;hp=4d2f17d4787deefe281426de0e8229a736dc7f98;hpb=4c2e35547fd6f849648234989419a4a02d2546b4;p=picodrive.git diff --git a/platform/common/emu.h b/platform/common/emu.h index 4d2f17d..836d7d4 100644 --- a/platform/common/emu.h +++ b/platform/common/emu.h @@ -6,8 +6,6 @@ * See COPYING file in the top-level directory. */ -#include "port_config.h" - #ifdef __cplusplus extern "C" { #endif @@ -16,14 +14,8 @@ extern "C" { extern void *g_screen_ptr; -#if SCREEN_SIZE_FIXED -#define g_screen_width SCREEN_WIDTH -#define g_screen_height SCREEN_HEIGHT -#else extern int g_screen_width; extern int g_screen_height; -#endif - #define EOPT_EN_SRAM (1<<0) #define EOPT_SHOW_FPS (1<<1) @@ -80,6 +72,8 @@ typedef struct _currentConfig_t { int renderer32x; int filter; // pandora int analog_deadzone; + int msh2_khz; + int ssh2_khz; } currentConfig_t; extern currentConfig_t currentConfig, defaultConfig; @@ -88,6 +82,7 @@ extern int state_slot; extern int config_slot, config_slot_current; extern unsigned char *movie_data; extern int reset_timing; +extern int flip_after_sync; #define PICO_PEN_ADJUST_X 4 #define PICO_PEN_ADJUST_Y 2