mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 19:15:07 +01:00
4611ae1998
* Added current version and revision number to boot screen * Renamed "Gametdb Path" to "Titles Path" and set default path for title's files to /titles/ subfolder. * Added a prompt to move existing files when editing Titles path. (Greywolf) * Added an option to display Multi-disc prompt when launching gamecube games with DM/DML/Nintendont. * Fixed exiting the credit page (press B to exit) * Set Loader's IOS setting to 58 if only 58 is available. * Removed unneeded IOS58 patches to libruntimeiospatch Nintendont: * Added Nintendont 3.304+ new version detection. * Removed warning if HID is enabled without controller.ini on r3.304+. HID setting still used to copy .ini if needed. * Fixed Booting game from USB if not on the first partition. * Fixed loading settings/cheats/controller.ini when booting from Disc. * Added a missing warning message if kenobiwii.bin is not found but debug option is enabled on Wii consoles. * Updated French language file
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
/****************************************************************************
|
|
* Copyright (C) 2010
|
|
* by Dimok
|
|
*
|
|
* This software is provided 'as-is', without any express or implied
|
|
* warranty. In no event will the authors be held liable for any
|
|
* damages arising from the use of this software.
|
|
*
|
|
* Permission is granted to anyone to use this software for any
|
|
* purpose, including commercial applications, and to alter it and
|
|
* redistribute it freely, subject to the following restrictions:
|
|
*
|
|
* 1. The origin of this software must not be misrepresented; you
|
|
* must not claim that you wrote the original software. If you use
|
|
* this software in a product, an acknowledgment in the product
|
|
* documentation would be appreciated but is not required.
|
|
*
|
|
* 2. Altered source versions must be plainly marked as such, and
|
|
* must not be misrepresented as being the original software.
|
|
*
|
|
* 3. This notice may not be removed or altered from any source
|
|
* distribution.
|
|
***************************************************************************/
|
|
#ifndef CUSTOMPATHS_MENU_HPP_
|
|
#define CUSTOMPATHS_MENU_HPP_
|
|
|
|
#include "SettingsMenu.hpp"
|
|
|
|
class CustomPathsSM : public SettingsMenu
|
|
{
|
|
public:
|
|
CustomPathsSM();
|
|
protected:
|
|
void SetOptionValues();
|
|
int GetMenuInternal();
|
|
int ChangePath(char * SettingsPath, int SizeOfPath);
|
|
|
|
OptionList GuiOptions;
|
|
|
|
private:
|
|
void MoveDbFile(const char* oldPath, const char* newPath, const char* fileName);
|
|
};
|
|
|
|
|
|
#endif
|