diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-01-29 12:16:52 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-01-29 17:06:58 -0400 |
commit | 5503179cb82fe478fbb5595b98ff6a042e083db7 (patch) | |
tree | a29fb4ec5f7c6f8b62117383029f96612b0618c6 | |
parent | 7edad57557c4f1e9b915340ad97d6c57958ce093 (diff) |
types.h: Use local path include, instead of system path include
-rw-r--r-- | include/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/types.h b/include/types.h index c5322e5..c48ec3c 100644 --- a/include/types.h +++ b/include/types.h @@ -9,7 +9,7 @@ extern "C" { #endif -#include <dolphin/types.h> +#include "dolphin/types.h" // Dolphin u32 is unsigned long typedef unsigned int uint; |