static unsigned int sdl_skip_update;
static unsigned int sdl_skip_count;
static unsigned int blank_cnt;
-#define MAX_BLANK_FRAME_CNT 120
+#define MAX_BLANK_FRAME_CNT 10
#define BLANK_GUIDE_IMAGE_PATH "../images/"
#define BLANK_GUIDE_IMAGE_NAME "blank-guide.png"
INFO("draw a blank guide image\n");
SDL_Surface *guide = get_blank_guide_image();
- if (guide != NULL) {
- int dst_w = 0;
- int dst_h = 0;
- int dst_x = 0;
- int dst_y = 0;
+ if (guide != NULL && get_emul_skin_enable() == 1) {
+ int dst_x = 0; int dst_y = 0;
+ int dst_w = 0; int dst_h = 0;
if (current_scale_factor != 1.0) {
/* guide image scaling */
static int shm_skip_update;
static int shm_skip_count;
static int blank_cnt;
-#define MAX_BLANK_FRAME_CNT 120
+#define MAX_BLANK_FRAME_CNT 10
extern pthread_mutex_t mutex_draw_display;
extern int draw_display_state;
/* draw guide image */
INFO("draw a blank guide image\n");
- notify_draw_blank_guide();
+ if (get_emul_skin_enable() == 1) {
+ notify_draw_blank_guide();
+ }
} else if (blank_cnt == 0) {
INFO("skipping of the display updating is started\n");
}