mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 11:05:06 +01:00
f7c1e9958d
*added a temporary workaround for selecting favorites when no favorites were setup for grid and carousel layout because of some serious problem in there which i have to look for later. *Reworked complete cover/discart download function (seems a lot faster to me now) *Fixed problem with switching games in game prompt and then going to the game settings. Was always the first selected games settings. *Fixed crash when clicking the DVD icon *Fixed save of lock/unlock state in parental control *Fixed install menu messup (not return to right menus) *Removed unnecessary save of settings on every mode switch *Several cleanups and fixes *Removed mountMethod 3
15 lines
650 B
C++
15 lines
650 B
C++
#ifndef GETMISSINGGAMEFILES_HPP_
|
|
#define GETMISSINGGAMEFILES_HPP_
|
|
|
|
/**************************************************************************************
|
|
* FindMissingFiles
|
|
* This function can be used for any files that are game related: .png, .wip, .gct, ...
|
|
* Inputs:
|
|
* path - Path to search in with. example "SD:/covers/"
|
|
* fileext - the file extension. example ".png"
|
|
* List - string vector where the IDs of missing game files will be put in.
|
|
**************************************************************************************/
|
|
int GetMissingGameFiles(const char * path, const char * fileext, std::vector<std::string> & List);
|
|
|
|
#endif
|