libretro: Move flip screen counter increment back to end of flip screen callback
[pcsx_rearmed.git] / frontend / libretro.c
index 15041bc..180c1d7 100644 (file)
@@ -30,7 +30,6 @@ static retro_audio_sample_batch_t audio_batch_cb;
 static void *vout_buf;
 static int samples_sent, samples_to_send;
 static int plugins_opened;
-static int native_rgb565;
 
 /* memory card data */
 extern char Mcd1Data[MCD_SIZE];
@@ -51,6 +50,7 @@ static void vout_set_mode(int w, int h, int raw_w, int raw_h, int bpp)
 {
 }
 
+#ifdef FRONTEND_SUPPORTS_RGB565
 static void convert(void *buf, size_t bytes)
 {
        unsigned int i, v, *p = buf;
@@ -60,6 +60,10 @@ static void convert(void *buf, size_t bytes)
                p[i] = (v & 0x001f001f) | ((v >> 1) & 0x7fe07fe0);
        }
 }
+#endif
+
+static unsigned game_width;
+static unsigned game_height;
 
 static void vout_flip(const void *vram, int stride, int bgr24, int w, int h)
 {
@@ -90,9 +94,11 @@ static void vout_flip(const void *vram, int stride, int bgr24, int w, int h)
        }
 
 out:
-       if (!native_rgb565)
-               convert(vout_buf, w * h * 2);
-       video_cb(vout_buf, w, h, w * 2);
+#ifndef FRONTEND_SUPPORTS_RGB565
+   convert(vout_buf, w * h * 2);
+#endif
+   game_width = w;
+   game_height = h;
        pl_rearmed_cbs.flip_cnt++;
 }
 
@@ -237,11 +243,12 @@ void retro_cheat_set(unsigned index, bool enabled, const char *code)
 
 bool retro_load_game(const struct retro_game_info *info)
 {
+#ifdef FRONTEND_SUPPORTS_RGB565
        enum retro_pixel_format fmt = RETRO_PIXEL_FORMAT_RGB565;
        if (environ_cb(RETRO_ENVIRONMENT_SET_PIXEL_FORMAT, &fmt)) {
-               native_rgb565 = 1;
                fprintf(stderr, "RGB565 supported, using it\n");
        }
+#endif
 
        if (plugins_opened) {
                ClosePlugins();
@@ -350,6 +357,7 @@ void retro_run(void)
        psxCpu->Execute();
 
        samples_to_send += 44100 / 60;
+       video_cb(vout_buf, game_width, game_height, game_width * 2);
 }
 
 void retro_init(void)
@@ -402,4 +410,3 @@ void retro_deinit(void)
        free(vout_buf);
        vout_buf = NULL;
 }
-