summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/Font.h5
-rw-r--r--include/LoadMenu.h26
2 files changed, 4 insertions, 27 deletions
diff --git a/include/Font.h b/include/Font.h
index 97a52ac..e2f1d12 100644
--- a/include/Font.h
+++ b/include/Font.h
@@ -5,8 +5,11 @@
* Includes
* *************************************/
+#include "Font.h"
+#include <psxgpu.h>
#include <stdarg.h>
#include <stdbool.h>
+#include <stdint.h>
enum
{
@@ -14,7 +17,7 @@ enum
FONT_DEFAULT_INIT_CHAR = '!'
};
-enum t_fontflags
+enum font_flags
{
FONT_NOFLAGS,
FONT_CENTERED = 0x01,
diff --git a/include/LoadMenu.h b/include/LoadMenu.h
deleted file mode 100644
index 881eb01..0000000
--- a/include/LoadMenu.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef LOAD_MENU_H
-#define LOAD_MENU_H
-
-/* *************************************
- * Includes
- * *************************************/
-
-#include <stdint.h>
-
-/* *************************************
- * Defines
- * *************************************/
-
-/* *************************************
- * Global prototypes
- * *************************************/
-
-void LoadMenuInit(void);
-
-void LoadMenu( const char *const *fileList,
- void *const *dest,
- uint8_t szFileList, uint8_t szDestList);
-
-void LoadMenuEnd(void);
-
-#endif /* LOAD_MENU_H */