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 @@
// platform-specific hacks
#ifndef RGBDS_PLATFORM_H
#define RGBDS_PLATFORM_H
#ifndef RGBDS_PLATFORM_HPP
#define RGBDS_PLATFORM_HPP
// MSVC doesn't have str(n)casecmp, use a suitable replacement
#ifdef _MSC_VER
@@ -56,4 +56,4 @@
#define setmode(fd, mode) (0)
#endif
#endif // RGBDS_PLATFORM_H
#endif // RGBDS_PLATFORM_HPP