mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
7bad8c3fd3
- private server - sicksaxis to be able to a ps3 controller in wiiflow - support for the latest nintendont with argsboot - other minor changes that i may or may not change soon. - credit to Abz, Airline38, and anyone else who helped with coding.
60 lines
1.6 KiB
C
60 lines
1.6 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_H_
|
|
#define _CFG_H_
|
|
|
|
#include "loader/cios.h"
|
|
#include "loader/frag.h"
|
|
#include "loader/wip.h"
|
|
|
|
struct the_CFG {
|
|
/* needed for wii games */
|
|
char gameID[7];
|
|
FragList *fragments;
|
|
s32 wbfsDevice;
|
|
u32 wbfsPart;
|
|
u8 GameBootType;
|
|
WIP_Code *wip_list;
|
|
u32 wip_count;
|
|
bool use_led;
|
|
bool patchregion;
|
|
bool private_server;
|
|
/* needed for channels */
|
|
u64 title;
|
|
bool use_dol;
|
|
/* General Stuff */
|
|
IOS_Info IOS;
|
|
u8 BootType;
|
|
u8 vidMode;
|
|
u8 patchVidMode;
|
|
u8 configbytes[2];
|
|
u8 debugger;
|
|
u8 vipatch;
|
|
u8 countryString;
|
|
int aspectRatio;
|
|
void *codelist;
|
|
u8 *codelistend;
|
|
u8 *cheats;
|
|
u32 cheatSize;
|
|
u32 hooktype;
|
|
u32 *gameconf;
|
|
u32 gameconfsize;
|
|
u32 returnTo;
|
|
} ATTRIBUTE_PACKED;
|
|
|
|
#endif /* _CFG_HPP_ */
|