Fix non-griffin build for 3DS and make it the default

While here:
* remove input_overlay and task_overlay from linking blacklist
* move -Werror to CC invocation since C++ refuses to use it
* copy the quiet build mode from the main Makefile and make it the
  default
* temporarily define DEPRECATED for gpu_old.h to allow succesful build
* replace the call to command_event() with one to retroarch_main_quit()
  in a failure case
This commit is contained in:
pstef 2025-03-30 00:18:18 +00:00
parent 70aaa0a55c
commit 4354fc331c
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,10 @@
#include <ctype.h>
#include <stdarg.h>
#if defined(_3DS) && !defined(_POSIX_THREADS)
#include <../rthreads/ctr_pthread.h>
#endif
#ifdef RC_C89_HELPERS
int rc_strncasecmp(const char* left, const char* right, size_t length)