Backported last irixxxx's changes to my FunKey fork

This commit is contained in:
root
2021-05-11 18:29:21 +02:00
parent 6b6542a664
commit b043a80a70
39 changed files with 461 additions and 206 deletions

View File

@@ -32,7 +32,7 @@ void pemu_prep_defconfig(void)
void pemu_validate_config(void)
{
#if !defined(__arm__) && !defined(__aarch64__) && !defined(__mips__) && !defined(__riscv__) && !defined(__riscv) && !defined(__powerpc__) && !defined(__i386__) && !defined(__x86_64__)
#if !defined(__arm__) && !defined(__aarch64__) && !defined(__mips__) && !defined(__riscv__) && !defined(__riscv) && !defined(__powerpc__) && !defined(__ppc__) && !defined(__i386__) && !defined(__x86_64__)
PicoIn.opt &= ~POPT_EN_DRC;
#endif
}

16
platform/linux/menu.c Normal file
View File

@@ -0,0 +1,16 @@
#include "../libpicofe/gp2x/plat_gp2x.h"
// ------------ gfx options menu ------------
const char *men_scaling_opts[] = { "OFF", "ON", NULL };
#define MENU_OPTIONS_GFX \
// mee_enum ("screen scaling", MA_OPT_SCALING, currentConfig.scaling, men_scaling_opts), \
#define MENU_OPTIONS_ADV
void linux_menu_init(void)
{
}