Skip to content

Commit

Permalink
Cut a 1.7-js1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ticky committed Oct 18, 2017
1 parent 8ca1d14 commit 1371744
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ int module_start(SceSize args UNUSED, void *argp UNUSED) {
while((*dest++ = *src++));
SET_DEVICENAME(filebuf, model == 4 ? INTERNAL_STORAGE : MEMORY_STICK);
// paf isn't loaded yet
kwrite(filebuf, "GCLite 1.5 starting\n", 20);
kwrite(filebuf, "Game Categories Lite v1.7-js1 starting\n", 20);
// Determine fw group
u32 devkit = sceKernelDevkitVersion();
if (devkit == 0x06020010) {
Expand Down
4 changes: 3 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Game Categories Lite v1.5 - Codestation
Game Categories Lite

This plugin is based and uses source code from Game Categories Revised v12 (GCR)
and Game Categories Light v1.3 (GCL), both created by Bubbletune. Compatible with
Expand Down Expand Up @@ -41,6 +41,8 @@ Known issues:
as 8 chars.

Changelog
v1.7-js1 (October 17, 2017):
[!]Fix labels not showing on PSP go internal storage.
v1.6:
[+]Added new option to sort categories: Use CAT_XX or XXcategory_name (XX between 00 and 99).
v1.5-r4
Expand Down
24 changes: 22 additions & 2 deletions sysconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,28 @@ extern int sysconf_plug;

extern int model;

static const char *sysconf_str[] = {"gc0", "gc1" , "gc2", "gc3"};
static const char *sysconf_sub[] = {"gcs0", "gcs1" , "gcs2", "gcs3"};
#define GC_SYSCONF_MODE "gc0"
#define GC_SYSCONF_MODE_SUB "gcs0"
#define GC_SYSCONF_PREFIX "gc1"
#define GC_SYSCONF_PREFIX_SUB "gcs1"
#define GC_SYSCONF_SHOW "gc2"
#define GC_SYSCONF_SHOW_SUB "gcs2"
#define GC_SYSCONF_SORT "gc3"
#define GC_SYSCONF_SORT_SUB "gcs3"

static const char *sysconf_str[] = {
GC_SYSCONF_MODE,
GC_SYSCONF_PREFIX,
GC_SYSCONF_SHOW,
GC_SYSCONF_SORT
};

static const char *sysconf_sub[] = {
GC_SYSCONF_MODE_SUB,
GC_SYSCONF_PREFIX_SUB,
GC_SYSCONF_SHOW_SUB,
GC_SYSCONF_SORT_SUB
};

void (*AddSysconfItem)(u32 *option, SceSysconfItem **item);
SceSysconfItem *(*GetSysconfItem)(void *arg0, void *arg1);
Expand Down

0 comments on commit 1371744

Please sign in to comment.