* MenuGameSelection * * Displays a list of games on the specified load device, and allows the user * to browse and select from this list. ***************************************************************************/
| 1004 | * to browse and select from this list. |
| 1005 | ***************************************************************************/ |
| 1006 | static char* getImageFolder() |
| 1007 | { |
| 1008 | switch(GCSettings.PreviewImage) |
| 1009 | { |
| 1010 | case PREVIEWIMAGE_SCREENSHOT : return GCSettings.ScreenshotsFolder; |
| 1011 | case PREVIEWIMAGE_COVER : return GCSettings.CoverFolder; |
| 1012 | case PREVIEWIMAGE_ARTWORK : return GCSettings.ArtworkFolder; |
| 1013 | default : return GCSettings.CoverFolder; |
| 1014 | } |
| 1015 | } |
| 1016 | |
| 1017 | static int MenuGameSelection() |
| 1018 | { |