From 908e426cc1ef2187357ed8fb59edd99b8a8060c9 Mon Sep 17 00:00:00 2001 From: negativeExponent Date: Tue, 4 Aug 2020 19:49:04 +0800 Subject: Add header guards --- libpcsxcore/gpu.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libpcsxcore/gpu.h') diff --git a/libpcsxcore/gpu.h b/libpcsxcore/gpu.h index 63a5572..98a22a0 100644 --- a/libpcsxcore/gpu.h +++ b/libpcsxcore/gpu.h @@ -21,6 +21,9 @@ * that GPU plugin doesn't. */ +#ifndef __GPU_H__ +#define __GPU_H__ + #define PSXGPU_LCF (1<<31) #define PSXGPU_nBUSY (1<<26) #define PSXGPU_ILACE (1<<22) @@ -38,3 +41,5 @@ HW_GPU_STATUS &= PSXGPU_TIMING_BITS; \ HW_GPU_STATUS |= GPU_readStatus() & ~PSXGPU_TIMING_BITS; \ } + +#endif /* __GPU_H__ */ -- cgit v1.2.3