summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar archshift2014-04-27 22:25:30 -0700
committerGravatar archshift2014-04-27 22:25:30 -0700
commit5749d1eabe9aa016affdc528c06b2a5f6a7f23a4 (patch)
tree130e4b74ce0cc14ca47a1b65f91109090bd7f137 /src
parentProblematic class with no current implementation (diff)
downloadyuzu-5749d1eabe9aa016affdc528c06b2a5f6a7f23a4.tar.gz
yuzu-5749d1eabe9aa016affdc528c06b2a5f6a7f23a4.tar.xz
yuzu-5749d1eabe9aa016affdc528c06b2a5f6a7f23a4.zip
Fix complaints about functions that could not be found
Diffstat (limited to 'src')
-rw-r--r--src/common/common_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/common_types.h b/src/common/common_types.h
index 50cf18738..25dc912a9 100644
--- a/src/common/common_types.h
+++ b/src/common/common_types.h
@@ -62,7 +62,7 @@ typedef signed long long s64; ///< 64-bit signed int
62typedef float f32; ///< 32-bit floating point 62typedef float f32; ///< 32-bit floating point
63typedef double f64; ///< 64-bit floating point 63typedef double f64; ///< 64-bit floating point
64 64
65#include "common/swap.h" 65#include "common/common.h"
66 66
67/// Union for fast 16-bit type casting 67/// Union for fast 16-bit type casting
68union t16 { 68union t16 {