---------------------------------------------------------------------------- This function must be called from within the emulation thread
| 4239 | //---------------------------------------------------------------------------- |
| 4240 | // This function must be called from within the emulation thread |
| 4241 | void 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 | //---------------------------------------------------------------------------- |
no test coverage detected