diff options
| author | notaz | 2011-09-26 03:07:51 +0300 |
|---|---|---|
| committer | notaz | 2011-09-27 02:09:35 +0300 |
| commit | 61ef5cf48ec7019f10f83017667e681ff8288509 (patch) | |
| tree | d61ff9538e8b2c60aa0995023e478b970d8b6653 /frontend | |
| parent | bedfea3863c3c48699048ea0d6dd07893221403c (diff) | |
| download | pcsx_rearmed-61ef5cf48ec7019f10f83017667e681ff8288509.tar.gz pcsx_rearmed-61ef5cf48ec7019f10f83017667e681ff8288509.tar.bz2 pcsx_rearmed-61ef5cf48ec7019f10f83017667e681ff8288509.zip | |
psxcounters: avoid update on each hsync
no useful work is done on hsync, no reason to interrupt the recompiler
that often, set up events as needed.
Diffstat (limited to 'frontend')
| -rw-r--r-- | frontend/plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/plugin.c b/frontend/plugin.c index fa4cf21..853fb15 100644 --- a/frontend/plugin.c +++ b/frontend/plugin.c @@ -75,7 +75,7 @@ extern void GPUreadDataMem(uint32_t *, int); extern long GPUdmaChain(uint32_t *,uint32_t); extern void GPUupdateLace(void); extern long GPUfreeze(uint32_t, void *); -extern void GPUvBlank(int, uint32_t *); +extern void GPUvBlank(int, uint32_t *, uint32_t *); extern void GPUrearmedCallbacks(const struct rearmed_cbs *cbs); |
