Merge pull request #8237 from JosJuice/memory-watcher-nullptr

Fix FIFO player crashing when USE_MEMORYWATCHER is defined
This commit is contained in:
Connor McLaughlin 2019-07-11 10:38:27 +10:00 committed by GitHub
commit 8d8d103739
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -133,6 +133,7 @@ void FrameUpdateOnCPUThread()
void OnFrameEnd()
{
#ifdef USE_MEMORYWATCHER
if (s_memory_watcher)
s_memory_watcher->Step();
#endif
}