Skip to content

Commit

Permalink
Release v1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOfficialFloW committed Sep 20, 2017
1 parent dbc97b5 commit bdc906f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions readme.md
Expand Up @@ -111,6 +111,14 @@ The source code is located within the `src` directory and is licensed under `GPL
- "My game/application displays as a trial version in the livearea" - This happens because you copied a game/application featuring a trial mode, without or with an invalid/corrupt `work.bin`.
- "I somehow messed up the installation, how can I reinstall a game?" - You can delete the (fake) license at `ux0:license/app/TITLE_ID` and use the refresh option in VitaShell.

## Changelog

### v1.1
- Fixed bug where fake license files of addcont on grw0: were not created.

### v1.0
- Initial release

## Donation
All my work is voluntary and nonprofit, however you can support my work by making a small donation - no matter how small, I'd be very thankful! Just be careful what you write to me in the message ;)
[Donation Link](https://www.paypal.me/PSVitaTheFloW)
Expand Down
7 changes: 5 additions & 2 deletions src/main.c
Expand Up @@ -189,15 +189,18 @@ static SceUID _ksceKernelLaunchAppPatched(void *args) {

char license_path[256];

snprintf(license_path, sizeof(license_path)-1, "gro0:license/app/%s", titleid);
snprintf(license_path, sizeof(license_path)-1, "ux0:license/app/%s", titleid);
FindLicenses(license_path);

snprintf(license_path, sizeof(license_path)-1, "ux0:license/app/%s", titleid);
snprintf(license_path, sizeof(license_path)-1, "gro0:license/app/%s", titleid);
FindLicenses(license_path);

snprintf(license_path, sizeof(license_path)-1, "ux0:license/addcont/%s", titleid);
FindLicenses(license_path);

snprintf(license_path, sizeof(license_path)-1, "grw0:license/addcont/%s", titleid);
FindLicenses(license_path);

return TAI_CONTINUE(int, ksceKernelLaunchAppRef, titleid, flags, path, unk); // returns pid
}

Expand Down

0 comments on commit bdc906f

Please sign in to comment.