MCPcopy 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}
726void FCEUI_SetShowFPS(bool showFPS)
727{
728 if ( Show_FPS != showFPS )
729 {
730 ResetFPS();
731 }
732 Show_FPS = showFPS;
733}
734void FCEUI_ToggleShowFPS()
735{
736 Show_FPS ^= 1;

Callers 3

InitVideoFunction · 0.85
showFPSChangedMethod · 0.85
InitVideoFunction · 0.85

Calls 1

ResetFPSFunction · 0.85

Tested by

no test coverage detected