Recent content by DeJay_Incognito

  1. DeJay_Incognito

    Tutorial Switch 7.0 Downgrade to 6.2 tutorial

    Nice man, I am going to release a for dummies on how to downgrade Horizon via NAND Flash if that is okay with you?
  2. DeJay_Incognito

    Tutorial Switch 7.0 Downgrade to 6.2 tutorial

    And I suppose you keep your USER Nand BKUP in a safe spot?
  3. DeJay_Incognito

    Tutorial Switch 7.0 Downgrade to 6.2 tutorial

    OH DUH! You prepped it before hand XD not Hekate auto backups into restore... you have your backup in restore already by you all the time. *immediately feels dumb*
  4. DeJay_Incognito

    Tutorial Switch 7.0 Downgrade to 6.2 tutorial

    Are you on the latest Hekate? Dumb Question: I saw the model number folder thingy, you probably are. I wish I didn't have the restore folder issue.
  5. DeJay_Incognito

    Tutorial Switch 7.0 Downgrade to 6.2 tutorial

    The reason that all the backup files are not already in restore is because the developers are IQ checking users. It also stops any mistakes with resets (which has killed me once).
  6. DeJay_Incognito

    Homebrew Creating an .rsf flie? Failed with makerom? Help Meh!

    Oh well the ideas are currently out there, and the Development area is on HB, but my good dudes were wanting to see what it would look like to have Doki Doki on the 3ds... so I was giving them a little spoiler Mind if I ask though, would you like to see a 3ds port of Doki Doki (if you ever heard...
  7. DeJay_Incognito

    Homebrew Creating an .rsf flie? Failed with makerom? Help Meh!

    Nevermind... found my errors, and we are good to go... now I just need to learn more c++, so I can start working on the actual code...
  8. DeJay_Incognito

    Homebrew Creating an .rsf flie? Failed with makerom? Help Meh!

    After completing Project Monika (where I needed help with rand()) I got a little restless and said "Why don't I make a .cia made Doki Doki". and now I am testing my new banner and stuff, but when writing the .cia using makerom I get this. As you can see in this image though, I do have...
  9. DeJay_Incognito

    Homebrew ARM 11 crash while using rand() command and trying to print()...

    Fixed i inserted printf("%d",main()); on line 152... but why is it giving me numbers larger than 400 -_- probably put it in wrong... but I must really thank you again... you guys were a big help... I will mention you in my program...
  10. DeJay_Incognito

    Homebrew ARM 11 crash while using rand() command and trying to print()...

    Um like this...... int main(){ srand(time(NULL)); int x; x = rand() % 400; printf("\x1b[16;01H"); printf("%d",x); }; main() }
  11. DeJay_Incognito

    Homebrew ARM 11 crash while using rand() command and trying to print()...

    I already have all of that, in fact here is the full code
  12. DeJay_Incognito

    Homebrew ARM 11 crash while using rand() command and trying to print()...

    Trying it now! auto I am pretty sure it runs the variable and gets the number but nothing is printed... but no more ARM11 crash
  13. DeJay_Incognito

    Homebrew ARM 11 crash while using rand() command and trying to print()...

    Am I doing something wrong?: printf("\x1b[16;01H"); int main(){ srand(time(NULL)); int x; x = rand() % 400; printf(x); }; } and the includes are: #include <3ds.h> #include <stdio.h>...