(PS3) Move cellSysUtilCheckCallback to gfx_ctx_swap_buffers

This commit is contained in:
twinaphex 2013-04-11 09:13:00 +02:00
parent 7c94cbf996
commit 717621ac0d

View File

@ -179,9 +179,6 @@ static void gfx_ctx_check_window(bool *quit,
*quit = false;
*resize = false;
#ifdef HAVE_SYSUTILS
cellSysutilCheckCallback();
#endif
if (gl->quitting)
*quit = true;
@ -200,6 +197,9 @@ static void gfx_ctx_swap_buffers(void)
#if defined(HAVE_PSGL)
psglSwap();
#endif
#ifdef HAVE_SYSUTILS
cellSysutilCheckCallback();
#endif
}
static void gfx_ctx_set_resize(unsigned width, unsigned height) { }