From c285b7af502dfe463479cecfbb26313be3e5f5f4 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 29 Sep 2020 12:42:14 -0400 Subject: fix includes --- src/GameSpy/darray.c | 6 +++--- src/GameSpy/hashtable.c | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/GameSpy/darray.c b/src/GameSpy/darray.c index b179f37..7f84cb0 100644 --- a/src/GameSpy/darray.c +++ b/src/GameSpy/darray.c @@ -1,7 +1,7 @@ #include "types.h" -#include "qsort.h" -#include "nonport.h" -#include "darray.h" +#include "libstdc++/qsort.h" +#include "GameSpy/nonport.h" +#include "GameSpy/darray.h" #pragma auto_inline on diff --git a/src/GameSpy/hashtable.c b/src/GameSpy/hashtable.c index d170aa7..0e1c09a 100644 --- a/src/GameSpy/hashtable.c +++ b/src/GameSpy/hashtable.c @@ -1,6 +1,6 @@ #include "types.h" -#include "nonport.h" -#include "hashtable.h" +#include "GameSpy/nonport.h" +#include "GameSpy/hashtable.h" HashTable *TableNew(u32 p1, s32 p2, HashFunction hf, CompareFunction cmp, DtorFunction dtor) { -- cgit v1.2.3