WiiFlow_Lite/resources/wiiflow_game_booter/source/Config.hpp
fix94.1 d8ee3c1b68 -changed version number to Beta 4.0.3
-recompiled mload modules for hermes cIOS
-added sdhc module for hermes cIOS
-fixed booting wii games from sd card
-improved wii game support via sd card, now you can use hermes, wanin
and d2x (not d2x only anymore)
-moved some more stuff to boot wii games into the external booter
-added gecko debug prints to external booter
-automatically disabling savegame emulator if you want to boot a wii
game via hermes or waninkoko cIOS
2012-09-28 17:24:04 +00:00

56 lines
1.5 KiB
C++

/****************************************************************************
* Copyright (C) 2012 FIX94
*
* 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 _CFG_HPP_
#define _CFG_HPP_
#include "cios.h"
#include "frag.h"
typedef struct _the_CFG {
/* needed for wii games */
char gameID[7];
FragList *fragments;
s32 wbfsDevice;
u32 wbfsPart;
u8 GameBootType;
u8 mload_rev;
/* needed for channels */
u64 title;
/* General Stuff */
IOS_Info IOS;
u8 BootType;
u8 vidMode;
u8 patchVidMode;
u8 configbytes[2];
u8 debugger;
bool vipatch;
bool countryString;
int aspectRatio;
void *codelist;
u8 *codelistend;
u8 *cheats;
u32 cheatSize;
u32 hooktype;
u32 *gameconf;
u32 gameconfsize;
u32 returnTo;
} the_CFG;
static the_CFG *conf = (the_CFG*)0x90000000;
#endif /* _CFG_HPP_ */