summaryrefslogtreecommitdiff
path: root/soh/src/code/graph.c
diff options
context:
space:
mode:
Diffstat (limited to 'soh/src/code/graph.c')
-rw-r--r--soh/src/code/graph.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/soh/src/code/graph.c b/soh/src/code/graph.c
index 9f744ec02..4b1887c18 100644
--- a/soh/src/code/graph.c
+++ b/soh/src/code/graph.c
@@ -431,6 +431,8 @@ static struct RunFrameContext {
extern AudioMgr gAudioMgr;
+extern void ProcessSaveStateRequests(void);
+
static void RunFrame()
{
u32 size;
@@ -487,6 +489,7 @@ static void RunFrame()
//uint64_t diff = (ticksB - ticksA) / (freq / 1000);
//printf("Frame simulated in %ims\n", diff);
runFrameContext.state = 1;
+ ProcessSaveStateRequests();
return;
nextFrame:;
}