-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from ev1l0rd/card-region-check
Card region check
- Loading branch information
Showing
8 changed files
with
328 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef _CONSTH_ | ||
#define _CONSTH_ | ||
|
||
#define PAL_TITLEID 0x00040000001BFB00 | ||
#define USA_TITLEID 0x00040000001BB200 | ||
#define JPN_TITLEID 0x00040000001BFC00 | ||
|
||
#define PAL_LOWID PAL_TITLEID ^ 0x4000000000000 | ||
#define USA_LOWID USA_TITLEID ^ 0x4000000000000 | ||
#define JPN_LOWID USA_TITLEID ^ 0x4000000000000 | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
#ifndef _EDITPROFILEH_ | ||
#define _EDITPROFILEH_ | ||
|
||
#include <3ds.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include "struct.h" | ||
Result edit_profile(int profile_num, bool fusion_mode, u32 lowid, InstallType install_type); | ||
|
||
Result edit_profile(char profile_num, int fusion_mode); | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.