Recent content by andreixl5

  1. andreixl5

    Homebrew Homebrew game How to make a loading screen timer for a DS homebrew game?

    This actually seems to do the trick! Thank you for the advice!
  2. andreixl5

    Homebrew Homebrew game How to make a loading screen timer for a DS homebrew game?

    I want the program to sleep for 3 seconds, I use a function that reads an integer representing the time in seconds and convert it into microseconds to be read by usleep: void RunSleepStd(int seconds){ auto convertTime = std::chrono::microseconds(seconds * 1000000)...
  3. andreixl5

    Homebrew Homebrew game How to make a loading screen timer for a DS homebrew game?

    I managed to make the game run again by switching to usleep() but that doesn't seem to affect anything, the loading is still instantaneous. I see that the 3DS library has a dedicated sleep function, what would be an equivalent for GBA/DS?
  4. andreixl5

    Homebrew Homebrew game How to make a loading screen timer for a DS homebrew game?

    Hello! How can I make a loading screen that runs on a timer for a DS homebrew game? I don't want to load scenes too quickly and I need to create a "loading" transition between game states and scenes. For example, when I start the game I show 2 logos on both screens, I want to display these...
  5. andreixl5

    Tutorial DS Programming for Newbies!

    This actually works, just tried it now. Good fix!
  6. andreixl5

    Homebrew Misc Any modern libraries for PSP homebrew development?

    Hello everyone! I want to make homebrew for the PSP in the future. I want to know if there are any libraries for modern homebrew development? There seems to barely be any information on libs and many tutorials are either too lackluster or lost to time on dead forums/websites. I am...
  7. andreixl5

    Tutorial DS Programming for Newbies!

    Hello, I am trying to run the TicTacToe example code. I made slight changes to the project, I put the backgrounds and sprites in subfolders inside the main data folder, which I renamed so I can use the FAT filesystem (NitroFS doesn't want to work at all for some reason). Loading the game with...
  8. andreixl5

    Hello from Romania!

    Hello! My name is andreixl5 and I live in Romania. I joined this forum to learn things about homebrew games and development. I currently work in Fullstack Development for web apps, but I already have a bit of experience in developing games for uni projects, so learning specific quirks about...
  9. andreixl5

    Homebrew Misc BlocksDS with an IDE on Windows?

    Hello, I am new on this site! Recently I bought a DS Lite and after enjoying some games on it I decided to learn to make my own games for it because it is a really cool platform and I have some experience developing games for uni projects and my bachelor's degree. I found the DS Programming for...