MCPcopy Create free account
hub / github.com/TASEmulators/fceux / hexEditorUpdateMemoryValues

Function hexEditorUpdateMemoryValues

src/drivers/Qt/HexEditor.cpp:4241–4255  ·  view source on GitHub ↗

---------------------------------------------------------------------------- This function must be called from within the emulation thread

Source from the content-addressed store, hash-verified

4239//----------------------------------------------------------------------------
4240// This function must be called from within the emulation thread
4241void hexEditorUpdateMemoryValues( bool force )
4242{
4243 std::list <HexEditorDialog_t*>::iterator it;
4244
4245 if ( !memNeedsCheck && !force )
4246 {
4247 return;
4248 }
4249
4250 for (it = winList.begin(); it != winList.end(); it++)
4251 {
4252 (*it)->editor->checkMemActivity();
4253 }
4254 memNeedsCheck = false;
4255}
4256//----------------------------------------------------------------------------

Callers 3

fceuWrapperUpdateFunction · 0.85
debugStepBackCBMethod · 0.85
FCEUD_DebugBreakpointFunction · 0.85

Calls 2

beginMethod · 0.45
checkMemActivityMethod · 0.45

Tested by

no test coverage detected