mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-19 09:49:21 +01:00
465c94455a
* Added Devolution version in Credit window. * Added Greek language file. You will need Hellenic font (Thanks nakata) * Changed default path for GameCube Main Folder to usb1:/games/ * Changed default path for devolution folder to be located on the boot device instead of SD. * Changed default URL for Channel's banner animation. * Fixed launching Korean games (Thanks damysteryman) * Fixed meta.xml release date format (Thanks Joostin) Devolution: * Added Devolution setting "NOLED" (and "WIDE" but not used yet). DIOS MIOS Lite: * Fixed DIOS MIOS (Lite) version detection when using a DM version more recent than the latest known. * Fixed DIOS MIOS (Lite) detection when booting without AHBPROT (Priiloader direct boot, old HBC, etc.) but with Waninkoko/d2x cIOS. * Removed "DML NoDisc+" setting when using DM v2.3+ * Removed warning messages related to individual game settings if they are currently unavailable. * Ocarina GCT folder can now be placed anywhere. If required, the .gct will be copied to a temporary file on the root of the game's partition. (no need to move the folder manually anymore)
44 lines
1.4 KiB
C
44 lines
1.4 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 0x0110
|
|
|
|
enum DEVOConfig
|
|
{
|
|
DEVO_CFG_WIFILOG = (1<<0), // added in Devo config version 0x0110
|
|
DEVO_CFG_WIDE = (1<<1), // added in Devo r142
|
|
DEVO_CFG_NOLED = (1<<2)
|
|
};
|
|
|
|
typedef struct _DEVO_CFG
|
|
{
|
|
u32 signature; //0x3EF9DB23
|
|
u16 version; //0x00000110
|
|
u16 device_signature;
|
|
u32 memcard_cluster;
|
|
u32 disc1_cluster;
|
|
u32 disc2_cluster;
|
|
u32 options; // added in Devo config version 0x0110
|
|
} DEVO_CGF;
|
|
|
|
#endif
|