Recent content by BlyZe

  1. BlyZe

    Homebrew Homebrew game [Release] Chrome T-Rex Game clone

    Thanks :) I'm glad I could help you out with some code :lol: 1751138116 Version 1.3.0 released - Fixed sound bug in the startup jingle (by @MillKeny) Download here :yay3ds: https://github.com/BlyZeDev/T-Rex-Game-3DS/releases/latest
  2. BlyZe

    Homebrew Homebrew game Flappy Bird in Vertical Orientation

    Looks great :yay3ds:
  3. BlyZe

    Homebrew Homebrew app Libctru error language completely wrong

    For some reason the language specifier doesn't work. CFG_LANGUAGE_DE -> French; CFG_LANGUAGE_JP -> German; CFG_LANGUAGE_FR -> English; usw. Something goes very wrong there but I can't find the issue. This is the code: errorConf conf; errorInit(&conf, ERROR_TEXT_LANGUAGE_WORD_WRAP...
  4. BlyZe

    Proximity chat mod has been created for Mario Kart 7

    Thanks, now I want that in the new Mario Kart :cry:
  5. BlyZe

    Homebrew Homebrew game [Release] Chrome T-Rex Game clone

    Oh that explains it. Thanks for the clarification.
  6. BlyZe

    Homebrew Homebrew game [Release] Chrome T-Rex Game clone

    Update :grog: Added with the new version: Highscore is now saved in sd/config/APP_TITLE/highscore.dat instead of sd/3ds/APP_TITLE/highscore.dat Existing highscore is automatically migrated to the new location and the old location folder is deleted Enabled wide mode usage for all models except...
  7. BlyZe

    Homebrew Homebrew app How to use external libraries

    How can I use external libraries like 'libpng'
  8. BlyZe

    Homebrew Homebrew game [Release] Chrome T-Rex Game clone

    If you have any ideas or wishes for updates you can just drop them in this thread B-)
  9. BlyZe

    Homebrew Homebrew game [Release] Chrome T-Rex Game clone

    Update :grog: Added with the new version: Mapped restart to the A button instead of only the touchscreen Added a highscore to the score display and saves the current highscore If you want to try it out the downloads are at the original post at the top. The QR-Code is updated to the newer...
  10. BlyZe

    Homebrew Homebrew game [Release] Chrome T-Rex Game clone

    I tried but it looked really weird with the 2D Sprites. But maybe I've done it wrong :unsure:
  11. BlyZe

    Homebrew Homebrew game [Release] Chrome T-Rex Game clone

    Hello ^^ I've created a simple clone of the Google Chrome T-Rex Game that runs natively on the Nintendo 3DS. Feel free to try it out ^^ Download .3dsx or .cia: https://github.com/BlyZeDev/T-Rex-Game-3DS/releases/latest Or scan this QR-Code with FBI Remote Download GitHub repository...
  12. BlyZe

    Homebrew Homebrew app Get username

    How to get the username on a Nintendo 3DS system using libctru? I mean the one found in System Settings -> Other Settings -> Profile -> Username
  13. BlyZe

    Homebrew Homebrew game Citro2D sprite drawn unclean

    I'm trying to draw this sprite: But for some reason it ends up looking like this: If I scale the sprite up with C2D_SpriteScale(&sprite, 1.01f, 1.01f); it looks normal. Any idea why this could be happening?
  14. BlyZe

    Homebrew Homebrew game Homebrew game randomly crashing

    Fixed: I made a simple but stupid underflow error with size_t size_t secondLastCactusIndex = lastCactusIndex - 1; //lastCactusIndex is size_t as well if (secondLastCactusIndex < 0) secondLastCactusIndex = length - 1; //Yeah unsigned int < 0 **crying** That's the simple fix :) size_t...
  15. BlyZe

    Homebrew Homebrew game Citro2D sprite z-order

    I want to render sprites in specific order so one sprite is layered above the other. But for some reason it doesn't work like I thought. First I tried just rendering the above sprite after the underlying sprite. C2D_TargetClear(topPtr, C2D_Color32(0, 0, 0, 255)); C2D_SceneBegin(topPtr)...