I've made a homebrew application, that I need to pack as a CIA: https://github.com/TuxSH/TWLSaveTool
However, even if I have recreated sysUpdater's and/or CHMM2's build environment, but makerom crashes all the time, no matter what I do (on both Windows and Linux, x86_64).
Would help if you posted more info on the crash from makerom, but if you're using latest ctrulib, it's probably this issue. That can be solved by building latest commit on that repo. But there are other known issues too, like using an outdated rsf format, so depends how it's crashing.
Does someone have a sample for the 2.X bootloader usage?
I tried to use the hbmenu ones but it has too many dependencies and trying to "extract it" from the main source finished with a system crash when trying to launch a 3dsx file.
Guys, need a little help. I killed my computer and have reinstalled windows, devkitpro and ctrulib. however my code wont compile. I am erroring at the following line---
Code:
APP_STATUS status;
Which worked fine earlier.
Have I missed a step when setting up my environment or something? I really want to get back to updating BreadBox.
Anyone knows if csnd service is able to play signed PCM sounds? Cause when i try to reproduce a buffer with signed PCM16 audiocodec i get a distorted sound as output.
Anyone knows if csnd service is able to play signed PCM sounds? Cause when i try to reproduce a buffer with signed PCM16 audiocodec i get a distorted sound as output.
Can someone here re-build the .cia HBLauncherLoader to search for a different filename than "boot.3dsx"? I recently came across someone who wanted a homebrew channel while being able to coldboot into cfw, and this seems like the most viable solution. Bonus points if the filename variable can be configurable via a .txt.
Actually, wait a second. The filename is actually inside of the payload. Just hex-edit the string that says "boot.3dsx" hex editor to change the filename the payload attempts to load.
Differences between signed and unsigned? I mean, if in an unsigned PCM16 sample has 65000 as value, in signed PCM16 its value is a simple cast (so 32767 - 65000) or something different?
Differences between signed and unsigned? I mean, if in an unsigned PCM16 sample has 65000 as value, in signed PCM16 its value is a simple cast (so 32767 - 65000) or something different?
Differences between signed and unsigned? I mean, if in an unsigned PCM16 sample has 65000 as value, in signed PCM16 its value is a simple cast (so 32767 - 65000) or something different?
Guys, how can I load a .3dsx from another homebrew? Something like app launch (used for installed .cias) but using some .3dsx in the sd card instead.
Thanks.
Hi guys, I'm new into 3DS HB developing and I just wrote my first HB. You can increase an integer by pressing A (or decrease it by pressing B). At the moment, the longer you hold the button, the bigger/smaller the integer gets, but I'd like it to increase by one for everytime A is pressed. Is there any easy way to do this? I thought of something like if A is pressed set a variable to one, this happens in a loop at which's beginning it increases the int if the variable is set to one and then resets it again. (Haven't got it to work by now)
Here is the actual source code of the version "the longer, the bigger":
printf("\nWelcome to an input test, where you can choose\nyour own integer!\nThe start value for it is %i.\n\n", choice);
flush();
choose();
printf("\n\nIf you want to adjust your integer again press A, else B.\n\n");
while (1) {
hidScanInput();
u32 kDown = hidKeysDown();
if (kDown & KEY_A) {
choose();
break;
}
if (kDown & KEY_B) {
flush();
break;
}
}
printf("\nPress START to exit.\n");
while (aptMainLoop()) {
hidScanInput();
u32 kDown = hidKeysDown();
if (kDown & KEY_START) break;
}
gfxExit();
return 0;
}
void choose(void)
{
printf("To increase your integer press A, to decrease it\npress B (the longer the button is pressed, the\nbigger/smaller will the number get).\nWhen finished press X and the number will be\ndisplayed.\n");
while (1) {
hidScanInput();
u32 kDown = hidKeysDown();
if (kDown & KEY_A)
choice += 1;
if (kDown & KEY_B)
choice -= 1;
if (kDown & KEY_X)
break;
}
I'd really appreciate it if someone could tell me a way to do it (the idea is enough, I think I can code the rest by myself ), and if you have some tips in genereal for 3DS HB development please tell me! ^^
Hi guys, I'm new into 3DS HB developing and I just wrote my first HB. You can increase an integer by pressing A (or decrease it by pressing B). At the moment, the longer you hold the button, the bigger/smaller the integer gets, but I'd like it to increase by one for everytime A is pressed. Is there any easy way to do this? I thought of something like if A is pressed set a variable to one, this happens in a loop at which's beginning it increases the int if the variable is set to one and then resets it again. (Haven't got it to work by now)
Here is the actual source code of the version "the longer, the bigger":
printf("\nWelcome to an input test, where you can choose\nyour own integer!\nThe start value for it is %i.\n\n", choice);
flush();
choose();
printf("\n\nIf you want to adjust your integer again press A, else B.\n\n");
while (1) {
hidScanInput();
u32 kDown = hidKeysDown();
if (kDown & KEY_A) {
choose();
break;
}
if (kDown & KEY_B) {
flush();
break;
}
}
printf("\nPress START to exit.\n");
while (aptMainLoop()) {
hidScanInput();
u32 kDown = hidKeysDown();
if (kDown & KEY_START) break;
}
gfxExit();
return 0;
}
void choose(void)
{
printf("To increase your integer press A, to decrease it\npress B (the longer the button is pressed, the\nbigger/smaller will the number get).\nWhen finished press X and the number will be\ndisplayed.\n");
while (1) {
hidScanInput();
u32 kDown = hidKeysDown();
if (kDown & KEY_A)
choice += 1;
if (kDown & KEY_B)
choice -= 1;
if (kDown & KEY_X)
break;
}
I'd really appreciate it if someone could tell me a way to do it (the idea is enough, I think I can code the rest by myself ), and if you have some tips in genereal for 3DS HB development please tell me! ^^
I believe you are having this problem because you are calling hidScanInput() too fast, try letting the thread sleep for a bit or doing something else on that loop to take some time.
To sleep the thread you can use svcSleepThread(nanoseconds).
I believe you are having this problem because you are calling hidScanInput() too fast, try letting the thread sleep for a bit or doing something else on that loop to take some time.
To sleep the thread you can use svcSleepThread(nanoseconds).
That sounds great! I didn't know about that function, maybe I should first work through the documentation of ctrulib... (but it's so big!) I'm gonna try this out and tell you my progress.
Last month we got confirmation of a new model of Switch 2 to better comply with upcoming EU regulations. With the legislation set to come into effect in February of...
Ocarina of Time is back in style as the upcoming Switch 2 remake looms on the horizon. But what's a fan of the game to do over the next few months? If you've been...
Tired of waiting for Game Freak to bring Pokemon Emerald to modern platforms? We've got you covered with a brand new port in the works. Currently available on GitHub...
For fans of Sinnoh, the pickings are slim. If you want the best experience you're left deciding between the updated region in Platinum, or the somewhat controversial...
If you've been waiting for an excuse to replay Super Mario Sunshine and happen to have up to nine friends, do I have some good news for you. Released earlier today...
The Switch 2 has been out for a year now, but you shouldn't count the original system out yet! Released a few days ago, popular PS2 emulator NetherSX2 has found its...
Hot on the heels of their NetherSX2 port, @Nagaa is back with another hugely anticipated release: a Switch port of the popular Wii U emulator Cemu. We've got more...
It's a good time to be a first generation Pokemon fan. But when was it not a good time to be one? In recent weeks we've seen a native LOVE2D recreation of Pokemon Red...
The Pokemon series is known for its vast assortment of spin off titles, with the majority being well-received. We've had an assortment of Mystery Dungeon titles, a...
The golden age of emulation on the Switch continues as a native Dolphin port was released by @Nagaa earlier today. Included in this port, we're looking at cover art...
Last month we got confirmation of a new model of Switch 2 to better comply with upcoming EU regulations. With the legislation set to come into effect in February of...
Ocarina of Time is back in style as the upcoming Switch 2 remake looms on the horizon. But what's a fan of the game to do over the next few months? If you've been...
Tired of waiting for Game Freak to bring Pokemon Emerald to modern platforms? We've got you covered with a brand new port in the works. Currently available on GitHub...
With the latest entry to the Fire Emblem series, Fortune's Weave, set to launch in September, Nintendo have today announced a new Nintendo Direct to put it soundly in...
It's a good time to be a first generation Pokemon fan. But when was it not a good time to be one? In recent weeks we've seen a native LOVE2D recreation of Pokemon Red...
Amidst news of layoffs and cancellations in the wake of Xbox's larger changes, Bethesda has today come out with a statement discussing their active projects. In this...
For fans of Sinnoh, the pickings are slim. If you want the best experience you're left deciding between the updated region in Platinum, or the somewhat controversial...
Announced today during the Octopath Traveler 8th Anniversary live stream, it's been confirmed that both the first game and its sequel will be launching on the Switch...
In this time of everything costing more a year after it's released, it's nice to see some things sticking to the old ways. Capcom have today announced that the latest...
If you've been waiting for an excuse to replay Super Mario Sunshine and happen to have up to nine friends, do I have some good news for you. Released earlier today...