Use consistent RGBDS_<PROG>_<NAME>_HPP header guard convention

This commit is contained in:
Rangi42
2024-04-14 21:43:06 -04:00
parent a234da42a6
commit b8387427a6
32 changed files with 102 additions and 100 deletions

View File

@@ -2,8 +2,8 @@
// Contains some assembler-wide defines and externs
#ifndef RGBDS_ASM_FSTACK_H
#define RGBDS_ASM_FSTACK_H
#ifndef RGBDS_ASM_FSTACK_HPP
#define RGBDS_ASM_FSTACK_HPP
#include <memory>
#include <optional>
@@ -81,4 +81,4 @@ bool fstk_Break();
void fstk_NewRecursionDepth(size_t newDepth);
void fstk_Init(std::string const &mainPath, size_t maxDepth);
#endif // RGBDS_ASM_FSTACK_H
#endif // RGBDS_ASM_FSTACK_HPP