Recent content by machine69_420

  1. M

    Homebrew Discussion How can Nintendo be so stupid

    Even though the online service got pushed back it still feels rushed and unfinished
  2. M

    Homebrew RELEASE NXPlay - Multimedia player for Nintendo Switch!

    Just add in Source/Includes.h: #include<sys/stat.h> And it should compile.
  3. M

    Hacking Question About PRODINFO corruption...

    So if the FAT12 file system gets corrupted you're kinda screwed. I get that. This is probably stupid but I was wandering if you could replace the console unique values and also the hashes and checksums corresponding to the new values. Sure, you would probably run into other problems but it...
  4. M

    Hacking Question About PRODINFO corruption...

    I understand that, but I am asking why? How does it "realize" it is corrupted? I wanna know the technical stuff if there is any information out there.
  5. M

    Hacking Question About PRODINFO corruption...

    So I have this question about switch's cert... If only my PRODINFO gets corrupted how does Horizon actually check if the console specific certificate and all that stuff is valid or not? Also you should be able to load something like Lakka onto your switch even when your PRODINFO is corrupted...
  6. M

    Homebrew RELEASE CustomUI - C++ libnx libs for creating switch-like UI homebrew apps!

    Go ahead and download devkitpro updater: https://github.com/devkitPro/installer/releases/tag/v3.0.3 Run it and let it do it's thing (it will install and upgrade all necessary packages for devkitpro). In start menu you should now see devkitPro folder and inside is Msys2 which is special command...
  7. M

    Homebrew RELEASE CustomUI - C++ libnx libs for creating switch-like UI homebrew apps!

    Yep @ShroomKing is right. The easiest way to get switch port of SDL2 is to install dkp-pacman which is package manager for devkitpro: https://github.com/devkitPro/pacman/releases To quote pacman wiki how to use this: To list packages use `dkp-pacman -Sl` To install a package use `sudo...
  8. M

    Homebrew RELEASE CustomUI - C++ libnx libs for creating switch-like UI homebrew apps!

    I see... well I am on mac too and the example compiles just fine for me, so there must be smth wrong with your pacman SDL2 library
  9. M

    Homebrew RELEASE CustomUI - C++ libnx libs for creating switch-like UI homebrew apps!

    Have you actually linked the SDL2 library in your make file?
  10. M

    Homebrew Suggestion Switch Video Player

    Looking at the source code, he is on the right path. I am pretty sure he'll get something working. Will it be usable? Without HW accel low res videos probably yes. But I am not sure if 1080p will be playable
  11. M

    Homebrew WIP Lakka.tv first release for Nintendo Switch

    Probably stupid question, but where is the u-boot config located?
  12. M

    Homebrew COMPLETED ScummVM

    Must agree. Is this project dead?
  13. M

    Hacking Question Adding LayeredFS Support for SYSTEM Titles?

    LayeredFS lets you replace data or executable of certain title, which basically lets you do modding or backup loading
  14. M

    Homebrew Question I dont understand this in the Switch Homebrew Example

    There are many converters on the internet that support png to rgb888 or jpg to rgb888. Just use google.
  15. M

    Homebrew Question SDL2 Switch Development Woes

    Try to delete the "build" folder. I had this specific error too and that helped me.