aboutsummaryrefslogtreecommitdiff
path: root/common/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/util.h')
-rw-r--r--common/util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/util.h b/common/util.h
index 3a77445567..fe35ee38a4 100644
--- a/common/util.h
+++ b/common/util.h
@@ -21,8 +21,8 @@
#ifndef COMMON_UTIL_H
#define COMMON_UTIL_H
-#include "scummsys.h"
-#include "system.h"
+#include "common/scummsys.h"
+#include "common/system.h"
template<typename T> inline T ABS (T x) { return (x>=0) ? x : -x; }
template<typename T> inline T MIN (T a, T b) { return (a<b) ? a : b; }