aboutsummaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
authorneonloop2021-08-21 00:10:44 +0000
committerneonloop2021-08-21 00:10:44 +0000
commit41fff233f29b6ee7274f4bf525052dcf0fa56c00 (patch)
treecfcc8fc9ae57b694d353cba8752a1f8fd99dc78e /main.h
parentf89bcd0179f4e07fe403894053c624d4983090c3 (diff)
downloadpicoarch-41fff233f29b6ee7274f4bf525052dcf0fa56c00.tar.gz
picoarch-41fff233f29b6ee7274f4bf525052dcf0fa56c00.tar.bz2
picoarch-41fff233f29b6ee7274f4bf525052dcf0fa56c00.zip
Updates message display and adds loading message to pcsx
Diffstat (limited to 'main.h')
-rw-r--r--main.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/main.h b/main.h
index cf6025e..e4e73aa 100644
--- a/main.h
+++ b/main.h
@@ -2,7 +2,6 @@
#define __MAIN_H__
#include <stdbool.h>
-#include <string.h>
#include "options.h"
#include "libretro.h"
@@ -30,18 +29,6 @@ extern void* mmenu;
extern char save_template_path[MAX_PATH];
#endif
-
-#define MAX(a, b) (a) > (b) ? (a) : (b)
-#define MIN(a, b) (a) < (b) ? (a) : (b)
-
-static inline bool has_suffix_i(const char *str, const char *suffix) {
- const char *p = strrchr(str, suffix[0]);
- if (!p) p = str;
- return !strcasecmp(p, suffix);
-}
-
-#define array_size(x) (sizeof(x) / sizeof(x[0]))
-
#ifdef DEBUG_LOGGING
#define PA_DEBUG(...) pa_log(RETRO_LOG_DEBUG, __VA_ARGS__)
#else