summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2017-09-16 15:13:26 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2017-09-16 15:13:26 -0400
commit052c9f0234a6034b9db8fce30f779b95b8869df5 (patch)
treef67236121745cc736113ffae0205dfba187ee9b1
parent54c8580d34b61dfd1db5dd91e301dfc788e564de (diff)
Fix header guards
-rw-r--r--include/gpu_regs.h6
-rw-r--r--include/rom4.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/include/gpu_regs.h b/include/gpu_regs.h
index 2d47d602c..28b97fb6e 100644
--- a/include/gpu_regs.h
+++ b/include/gpu_regs.h
@@ -2,8 +2,8 @@
// Created by scott on 9/15/2017.
//
-#ifndef POKEEMERALD_GPU_REGS_H
-#define POKEEMERALD_GPU_REGS_H
+#ifndef GUARD_GPU_REGS_H
+#define GUARD_GPU_REGS_H
// Exported type declarations
@@ -12,4 +12,4 @@
// Exported ROM declarations
void ClearGpuRegBits(u8 regOffset, u16 mask);
-#endif //POKEEMERALD_GPU_REGS_H
+#endif //GUARD_GPU_REGS_H
diff --git a/include/rom4.h b/include/rom4.h
index 1538f5dbc..3164c81ea 100644
--- a/include/rom4.h
+++ b/include/rom4.h
@@ -2,8 +2,8 @@
// Created by scott on 9/15/2017.
//
-#ifndef POKEEMERALD_ROM4_H
-#define POKEEMERALD_ROM4_H
+#ifndef GUARD_ROM4_H
+#define GUARD_ROM4_H
// Exported type declarations
@@ -12,4 +12,4 @@
// Exported ROM declarations
void sub_8086230(void);
-#endif //POKEEMERALD_ROM4_H
+#endif //GUARD_ROM4_H