mirror of
https://github.com/wiidev/usbloadergx.git
synced 2025-01-11 03:09:08 +01:00
48b3ab3324
* Added an URL auto-updater for users with the old GameCube banner URL. Devolution : * Added forced video mode to PAL60Hz 480i when playing NTSC games on a PAL console. * Added Crop Overscan and Disc Delay settings from Devolution r234 - For PlayLog setting, use USBLoaderGX Playlog setting. - "MemCard emulation on NAND" feature will not be added. Nintendont : * Added support for Nintendont v1.135+ * Added MemCard Emu "Multi" support, named "Enabled" like with Devolution (OFF > Individual > Enabled) (v1.135+) * Added MemCard Blocks size option (v1.135+) * Added specific game settings (Metal gear Solid) * Changed to use Argsboot method only if AutoBoot is set.
50 lines
1.7 KiB
C
50 lines
1.7 KiB
C
/****************************************************************************
|
|
* Copyright (C) 2012 Dimok
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
****************************************************************************/
|
|
#ifndef DEVO_CONFIG_H_
|
|
#define DEVO_CONFIG_H_
|
|
|
|
#define LAUNCH_DEVO() ((void(*)(void))loader_bin)()
|
|
|
|
#define DEVO_SIG 0x3EF9DB23
|
|
#define DEVO_CONFIG_VERSION 0x0200
|
|
|
|
enum DEVOConfig
|
|
{
|
|
DEVO_CFG_WIFILOG = (1<<0), // added in Devo r100, config version 0x0110
|
|
DEVO_CFG_WIDE = (1<<1), // added in Devo r142
|
|
DEVO_CFG_NOLED = (1<<2),
|
|
DEVO_CFG_FZERO_AX = (1<<3), // added in Devo r196, config version x0111
|
|
DEVO_CFG_TIMER_FIX = (1<<4),
|
|
DEVO_CFG_D_BUTTONS = (1<<5), // added in Devo r200, config version 0x0112
|
|
DEVO_CFG_CROP_OVERSCAN = (1<<6), // added in Devo r234, config version 0x0200
|
|
DEVO_CFG_DISC_DELAY = (1<<7),
|
|
DEVO_CFG_PLAYLOG = (1<<8),
|
|
};
|
|
|
|
typedef struct _DEVO_CFG
|
|
{
|
|
u32 signature; //0x3EF9DB23
|
|
u16 version; //0x00000200
|
|
u16 device_signature;
|
|
u32 memcard_cluster;
|
|
u32 disc1_cluster;
|
|
u32 disc2_cluster;
|
|
u32 options; // added in Devo config version 0x0110
|
|
} DEVO_CGF;
|
|
|
|
#endif
|