diff options
author | neonloop | 2021-04-03 00:38:20 +0000 |
---|---|---|
committer | neonloop | 2021-04-03 00:38:20 +0000 |
commit | e2303a4166ec3b78219115c18a0113e24fa48cf6 (patch) | |
tree | 5026ec21d6f5770122e23142e8abd4ba88cf6131 /source/ppu.h | |
parent | 7c6c5f3bb6f8084ed5ae6eaafe0db14c5afe49bc (diff) | |
download | snesemu-e2303a4166ec3b78219115c18a0113e24fa48cf6.tar.gz snesemu-e2303a4166ec3b78219115c18a0113e24fa48cf6.tar.bz2 snesemu-e2303a4166ec3b78219115c18a0113e24fa48cf6.zip |
Adds overscan scaler and fps display
Diffstat (limited to 'source/ppu.h')
-rw-r--r-- | source/ppu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/ppu.h b/source/ppu.h index 447f7f1..934df06 100644 --- a/source/ppu.h +++ b/source/ppu.h @@ -40,6 +40,8 @@ typedef struct bool RenderThisFrame; bool DirectColourMapsNeedRebuild; uint32_t FrameCount; + uint32_t RenderedFramesCount; + uint32_t DisplayedRenderedFrameCount; uint8_t* TileCache [3]; uint8_t* TileCached [3]; bool FirstVRAMRead; |