mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 19:15:07 +01:00
fab8e625ad
raise the coder to char[100] because we have a shitload of names on there add param int t=0 to the get entries function to force getting all games and ignore settings and parental control fix bug that code dumped if you didn't have the database.txt for the channel names
18 lines
464 B
C
18 lines
464 B
C
/****************************************************************************
|
|
* PromptWindows
|
|
* USB Loader GX 2009
|
|
*
|
|
* PromptWindows.h
|
|
***************************************************************************/
|
|
|
|
#ifndef _GETENTRIES_H_
|
|
#define _GETENTRIES_H_
|
|
|
|
//! param t
|
|
//! make this 1 if you want the function to ignore the rules
|
|
//! (settings and parental control) when making the game list.
|
|
//!
|
|
int __Menu_GetEntries(int t=0);
|
|
|
|
#endif
|