diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2024-04-20 19:10:53 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-20 19:10:53 -0600 |
| commit | 7a10ba89f6bf26fd4b659510fefb2ce1cd315f02 (patch) | |
| tree | a06fc0b8288801398c24c96e80b0320cf513c9de /src/debug | |
| parent | 4df64731472064ac5452b62fb867e59a18487852 (diff) | |
Header cleanup and some renames (#616)
* Place macros for addr conversions
* dl renames
* fixes
* changes ok
* Delete types.h
* move enums
Diffstat (limited to 'src/debug')
| -rw-r--r-- | src/debug/all_variables.h | 2 | ||||
| -rw-r--r-- | src/debug/crash_screen_enhancement.c | 3 | ||||
| -rw-r--r-- | src/debug/crash_screen_enhancement.h | 5 |
3 files changed, 6 insertions, 4 deletions
diff --git a/src/debug/all_variables.h b/src/debug/all_variables.h index 2777ba625..561a23ea6 100644 --- a/src/debug/all_variables.h +++ b/src/debug/all_variables.h @@ -51,7 +51,6 @@ #include <actor_types.h> #include <common_structs.h> -#include <config.h> #include <course.h> #include <course_offsets.h> #include <debug.h> @@ -64,7 +63,6 @@ #include <segments.h> #include <sounds.h> #include "buffers/trig_tables.h" -#include <types.h> #include <ultra64.h> #include <vehicles.h> #include <waypoints.h> diff --git a/src/debug/crash_screen_enhancement.c b/src/debug/crash_screen_enhancement.c index 54547908c..574b3f531 100644 --- a/src/debug/crash_screen_enhancement.c +++ b/src/debug/crash_screen_enhancement.c @@ -1,7 +1,6 @@ #include <ultra64.h> #include <macros.h> -#include <types.h> -#include <config.h> +#include <mk64.h> #include <stdarg.h> #include <string.h> #include "../crash_screen.h" diff --git a/src/debug/crash_screen_enhancement.h b/src/debug/crash_screen_enhancement.h index 43fe8e10a..9f9a321ca 100644 --- a/src/debug/crash_screen_enhancement.h +++ b/src/debug/crash_screen_enhancement.h @@ -1,3 +1,6 @@ +#ifndef CRASH_SCREEN_ENHANCEMENT_H +#define CRASH_SCREEN_ENHANCEMENT_H + #include <ultra64.h> #include <macros.h> @@ -35,3 +38,5 @@ void crash_screen_draw(OSThread* thread); // } // gGlobalTimer++; // } + +#endif // CRASH_SCREEN_ENHANCEMENT_H
\ No newline at end of file |
