Skip to content

Commit

Permalink
-added additional CBHC patch to manually set the flag which checks us…
Browse files Browse the repository at this point in the history
…b on the next title launch since the ds title by default disables it and its normally not re-enabled
  • Loading branch information
FIX94 committed Dec 10, 2016
1 parent 89616ac commit 00c9cd2
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions dsrom/CBHC/arm_kernel/source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ int _main()
// allow any region title launch
*(volatile u32*)(0xE0030498 - 0xE0000000 + 0x12900000) = 0xE3A00000; // mov r0, #0

// force check USB storage on load
*(volatile u32*)(0xE012202C - 0xE0000000 + 0x12900000) = 0x00000001; // find USB flag

// nop out memcmp hash checks
*(volatile u32*)(0x040017E0 - 0x04000000 + 0x08280000) = 0xE3A00000; // mov r0, #0
*(volatile u32*)(0x040019C4 - 0x04000000 + 0x08280000) = 0xE3A00000; // mov r0, #0
Expand Down
2 changes: 1 addition & 1 deletion dsrom/CBHC/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ static unsigned int getButtonsDown(unsigned int padscore_handle, unsigned int vp
#define FORCE_HBL (VPAD_BUTTON_A | VPAD_BUTTON_B | VPAD_BUTTON_X | VPAD_BUTTON_Y)
#define SD_HBL_PATH "/vol/external01/wiiu/apps/homebrew_launcher/homebrew_launcher.elf"

static const char *verChar = "CBHC v1.0 by FIX94";
static const char *verChar = "CBHC v1.1 by FIX94";

#define DEFAULT_DISABLED 0
#define DEFAULT_SYSMENU 1
Expand Down
2 changes: 1 addition & 1 deletion installer/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ int availSort(const void *c1, const void *c2)
void printhdr_noflip()
{
#ifdef CB
println_noflip(0,"CBHC v1.0 by FIX94");
println_noflip(0,"CBHC v1.1 by FIX94");
#else
println_noflip(0,"Haxchi v2.3 by FIX94");
#endif
Expand Down
Binary file modified release/cbhc/iconTex.tga
Binary file not shown.
2 changes: 1 addition & 1 deletion release/cbhc/title.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CBHC
DONT TOUCH ME
4 changes: 2 additions & 2 deletions release/wiiu/apps/cbhc/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<app version="1">
<name>CBHC</name>
<coder>FIX94</coder>
<version>1.0</version>
<version>1.1</version>
<url>https://github.com/FIX94/haxchi</url>
<release_date>20161210200000</release_date>
<short_description>Coldboot Haxchi Installer</short_description>
<long_description>WARNING! This will install Coldboot Haxchi on your system.
ONLY USE THIS IF YOU ARE WILLING TO TAKE A RISK OF BRICKING YOUR CONSOLE.
ONLY USE THIS IF YOU ARE WILLING TO TAKE A RISK OF BRICKING YOUR CONSOLE.
</long_description>
</app>

0 comments on commit 00c9cd2

Please sign in to comment.