Homebrew I need help with Makefile compiling through devkitPro

  • Thread starter Thread starter Julian-GBT
  • Start date Start date
  • Views Views 1,747
  • Replies Replies 10

Julian-GBT

Well-Known Member
Newcomer
Joined
May 14, 2018
Messages
56
Reaction score
8
Trophies
0
XP
238
Country
Canada
I've been trying hard to compile a remake of SmashBrosDummy, and GridLauncher v2 without errors. If somebody can compile those 2 attachments into a CIA format, that would be appreciated.
 

Attachments

I made it. I'm just making progress for now. I'm willing to have it more complete, after the possible compile.
 
Change this
int main(int argc, char **argv)

break

To this
int main(int argc, char **argv) {
gfxInitDefault(); //initalize 3ds graphics
consoleInit(GFX_TOP, &topScreen);

while(aptMainLoop()) {
gfxSwapBuffers();
gfxFlushBuffers();
gspWaitForVBlank();

hidScanInput();
u32 kDown = hidKeysDown(); //define kDown so we don't have to type hidKeysDown() every time
if (kDown & KEY_START)
break; // break in order to return to hbmenu
}
gfxExit();
return 0;
}

It isn't going to compile if you don't have code that works
 
Last edited by oreo639,
Here is a fixed makefile. I tried to fix the original one, however I eventualy gave up and based it off Anemone's makefile.
(also about gridlauncher, the error can be fixed by simply changing the confilcting function name, however if you are using luma it won't work anyway afaik)
 

Attachments

Last edited by oreo639,

Site & Scene News

Popular threads in this forum