Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/TASEmulators/fceux
/ FCEUI_SetShowFPS
Function
FCEUI_SetShowFPS
src/video.cpp:726–733 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
724
return Show_FPS;
725
}
726
void FCEUI_SetShowFPS(bool showFPS)
727
{
728
if ( Show_FPS != showFPS )
729
{
730
ResetFPS();
731
}
732
Show_FPS = showFPS;
733
}
734
void FCEUI_ToggleShowFPS()
735
{
736
Show_FPS ^= 1;
Callers
3
InitVideo
Function · 0.85
showFPSChanged
Method · 0.85
InitVideo
Function · 0.85
Calls
1
ResetFPS
Function · 0.85
Tested by
no test coverage detected