summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2015-07-26 01:09:05 -0700
committerMichael Pavone <pavone@retrodev.com>2015-07-26 01:09:05 -0700
commit25fc1e88deea8253d9d4b8084485e176eb69abd0 (patch)
tree07ed7ef91c9a7e837d6a3fe0c1408cb4362b623b
parent80ff833dd8ad011b579bff26ac654819e6735bce (diff)
Fix missing includes of util.h
-rw-r--r--stateview.c1
-rw-r--r--vgmplay.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/stateview.c b/stateview.c
index 1e8632f..3f860e7 100644
--- a/stateview.c
+++ b/stateview.c
@@ -7,6 +7,7 @@
#include <stdio.h>
#include "vdp.h"
#include "render.h"
+#include "util.h"
#include "blastem.h"
//not used, but referenced by the renderer since it handles input
diff --git a/vgmplay.c b/vgmplay.c
index 0473a40..f87c570 100644
--- a/vgmplay.c
+++ b/vgmplay.c
@@ -7,6 +7,7 @@
#include "ym2612.h"
#include "psg.h"
#include "config.h"
+#include "util.h"
#include <stdint.h>
#include <stdio.h>