diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-01-03 09:23:25 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-01-03 10:14:32 +0000 |
commit | d49c62663b6a2229e9849769591873005c762618 (patch) | |
tree | 96929394d36f129d72c0d3c56bd269dbfa8c2132 /game | |
parent | bd4647a79e13f4a6ada8a86754d889fcddd758d4 (diff) | |
download | ubox-msx-lib-d49c62663b6a2229e9849769591873005c762618.tar.gz ubox-msx-lib-d49c62663b6a2229e9849769591873005c762618.zip |
Renamed aux to helpers to be windows compatible
Diffstat (limited to 'game')
-rw-r--r-- | game/src/game.c | 2 | ||||
-rw-r--r-- | game/src/helpers.c (renamed from game/src/aux.c) | 2 | ||||
-rw-r--r-- | game/src/helpers.h (renamed from game/src/aux.h) | 6 | ||||
-rw-r--r-- | game/src/main.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/game/src/game.c b/game/src/game.c index bb08f32..f5f5970 100644 --- a/game/src/game.c +++ b/game/src/game.c @@ -5,7 +5,7 @@ #include "spman.h" #include "mplayer.h" -#include "aux.h" +#include "helpers.h" #include "main.h" #define LOCAL diff --git a/game/src/aux.c b/game/src/helpers.c index b8864c6..9aa4785 100644 --- a/game/src/aux.c +++ b/game/src/helpers.c @@ -2,7 +2,7 @@ #include "ubox.h" -#include "aux.h" +#include "helpers.h" /** * Put a zero terminated string on the screen using tiles. diff --git a/game/src/aux.h b/game/src/helpers.h index 64dfbbd..8f35661 100644 --- a/game/src/aux.h +++ b/game/src/helpers.h @@ -1,5 +1,5 @@ -#ifndef _AUX_H -#define _AUX_H +#ifndef _HELPERS_H +#define _HELPERS_H #include <stdint.h> @@ -9,4 +9,4 @@ void put_text(uint8_t x, uint8_t y, const uint8_t *text); -#endif // _AUX_H +#endif // _HELPERS_H diff --git a/game/src/main.c b/game/src/main.c index 23591ca..6ac4833 100644 --- a/game/src/main.c +++ b/game/src/main.c @@ -3,7 +3,7 @@ #include "ubox.h" #include "mplayer.h" -#include "aux.h" +#include "helpers.h" #include "game.h" #define LOCAL |