Skip to content

Commit

Permalink
Release 9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Lopez committed Dec 31, 2021
1 parent 7cc3bef commit 46f6e3b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
7 changes: 4 additions & 3 deletions ISSUES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# CFW Issues
- Returning from standby in PSX games results in "memory stick cannot be accessed" error.
- PS1 games on Vita are not working in ePSP mode.
- UMD ripping tools fail <- most likely due to CFW lacking some features.
- Some plugins don't load (i.e. popsloader and cdda_enabler) <- most likely due to CFW lacking some features.
- Loading PRX files from ms0 with the ~PSP flag instead of the .ELF flag gives Unsuported PRX Type Error (0x80020148)
- Some plugins don't load (i.e. popsloader and cdda_enabler)
- Returning from standby in PSX games results in "memory stick cannot be accessed" error.
- UMD ripping tools fail.

# Launcher Issues
- Weird dual screen bug that seems to be random.
- Incompatible with non-ASCII characters.
2 changes: 1 addition & 1 deletion common/include/globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
#define ARK_BIN_MAX_SIZE 0x8000
#define ARK_MAJOR_VERSION 4
#define ARK_MINOR_VERSION 9
#define ARK_MICRO_VERSION 3
#define ARK_MICRO_VERSION 4

/*
First two bits identify the device (PSP or PS Vita)
Expand Down
10 changes: 5 additions & 5 deletions extras/menus/recovery/ark_settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static struct {
unsigned char* config_ptr;
char* options[MAX_ARK_OPTIONS];
} overclock = {
"Overclock",
"OverClock",
MAX_ARK_OPTIONS,
0,
&(ark_config.overclock),
Expand All @@ -73,7 +73,7 @@ static struct {
unsigned char* config_ptr;
char* options[MAX_ARK_OPTIONS];
} powersave = {
"Power Saving",
"PowerSave",
MAX_ARK_OPTIONS,
0,
&(ark_config.powersave),
Expand All @@ -88,7 +88,7 @@ static struct {
unsigned char* config_ptr;
char* options[MAX_ARK_OPTIONS];
} launcher = {
"Custom Launcher",
"Autoboot Launcher",
MAX_ARK_OPTIONS,
0,
&(ark_config.launcher),
Expand All @@ -103,7 +103,7 @@ static struct {
unsigned char* config_ptr;
char* options[MAX_ARK_OPTIONS];
} disablepause = {
"Disable Pause (Go)",
"Disable PSP Go Pause",
MAX_ARK_OPTIONS,
0,
&(ark_config.disablepause),
Expand All @@ -117,7 +117,7 @@ static struct {
unsigned char* config_ptr;
char* options[MAX_ARK_OPTIONS];
} highmem = {
"High Memory Layout",
"Unlock Extra Memory",
MAX_ARK_OPTIONS,
0,
&(ark_config.highmem),
Expand Down

0 comments on commit 46f6e3b

Please sign in to comment.