mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +01:00
6d9f213091
Nintendont : * Removed 32k/cluster limitation. * Fixed video mode setting "Auto". * Fixed loading cheats from the second device.
88 lines
2.3 KiB
C
88 lines
2.3 KiB
C
/****************************************************************************
|
|
* Copyright (C) 2013 Cyan
|
|
*
|
|
* 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 NIN_CONFIG_H_
|
|
#define NIN_CONFIG_H_
|
|
|
|
#include <gctypes.h>
|
|
|
|
#define NIN_MAGIC 0x01070CF6
|
|
#define NIN_CFG_VERSION 0x00000002
|
|
|
|
typedef struct NIN_CFG
|
|
{
|
|
u32 Magicbytes; // 0x01070CF6
|
|
u32 Version; // 0x00000002 since r42
|
|
u32 Config;
|
|
u32 VideoMode;
|
|
u32 Language;
|
|
char GamePath[255];
|
|
char CheatPath[255];
|
|
u32 MaxPads;
|
|
u32 GameID;
|
|
} NIN_CFG;
|
|
|
|
enum ninconfig
|
|
{
|
|
NIN_CFG_CHEATS = (1<<0),
|
|
NIN_CFG_DEBUGGER = (1<<1), // Only for Wii Version
|
|
NIN_CFG_DEBUGWAIT = (1<<2), // Only for Wii Version
|
|
NIN_CFG_MEMCARDEMU = (1<<3),
|
|
NIN_CFG_CHEAT_PATH = (1<<4),
|
|
NIN_CFG_FORCE_WIDE = (1<<5),
|
|
NIN_CFG_FORCE_PROG = (1<<6),
|
|
NIN_CFG_AUTO_BOOT = (1<<7),
|
|
NIN_CFG_HID = (1<<8),
|
|
NIN_CFG_OSREPORT = (1<<9),
|
|
NIN_CFG_USB = (1<<10),
|
|
};
|
|
|
|
enum ninvideomode
|
|
{
|
|
NIN_VID_AUTO = (0<<16),
|
|
NIN_VID_FORCE = (1<<16),
|
|
NIN_VID_NONE = (2<<16),
|
|
|
|
NIN_VID_MASK = NIN_VID_AUTO|NIN_VID_FORCE|NIN_VID_NONE,
|
|
|
|
NIN_VID_FORCE_PAL50 = (1<<0),
|
|
NIN_VID_FORCE_PAL60 = (1<<1),
|
|
NIN_VID_FORCE_NTSC = (1<<2),
|
|
NIN_VID_FORCE_MPAL = (1<<3),
|
|
|
|
NIN_VID_FORCE_MASK = NIN_VID_FORCE_PAL50|NIN_VID_FORCE_PAL60|NIN_VID_FORCE_NTSC|NIN_VID_FORCE_MPAL,
|
|
|
|
NIN_VID_PROG = (1<<4),
|
|
};
|
|
|
|
enum ninlanguage
|
|
{
|
|
NIN_LAN_ENGLISH = 0,
|
|
NIN_LAN_GERMAN = 1,
|
|
NIN_LAN_FRENCH = 2,
|
|
NIN_LAN_SPANISH = 3,
|
|
NIN_LAN_ITALIAN = 4,
|
|
NIN_LAN_DUTCH = 5,
|
|
|
|
/* Auto will use English for E/P region codes and
|
|
only other languages when these region codes are used: D/F/S/I */
|
|
|
|
NIN_LAN_AUTO = -1,
|
|
};
|
|
|
|
|
|
#endif
|