Update README

This commit is contained in:
2024-06-04 17:28:43 -04:00
parent e09c33f0e8
commit f8fba122ac
3 changed files with 12 additions and 3 deletions

View File

@@ -28,9 +28,11 @@ Special thanks go to these people who, whilst not directly contributing, helped
* [SteveIce10](https://github.com/SteveIce10), whose QR code in FBI was essential. * [SteveIce10](https://github.com/SteveIce10), whose QR code in FBI was essential.
* [BernardoGiordano](https://github.com/BernardoGiordano) for making pp2d, and being super responsive to feature requests and just general help. * [BernardoGiordano](https://github.com/BernardoGiordano) for making pp2d, and being super responsive to feature requests and just general help.
* [yellows8](https://github.com/yellows8) for his home menu extdump tool, which was invaluable in debugging. * [yellows8](https://github.com/yellows8) for his home menu extdump tool, which was invaluable in debugging.
* the folks on #dev of Nintendo Homebrew, who helped with unicode shenanigans (especially [Stary2001](https://github.com/Stary2001), [Fenrir](https://github.com/FenrirWolf), and DanielKO). * [MrCheeze](https://github.com/MrCheeze) and [AntiMach](https://github.com/AntiMach) whose GYTB and ABE code served as a reference on badge management
* the maintainers for all used libraries, including but not limited to ctrulib, zlib, citro3d, pp2d, and quirc. * [Tobid7](https://github.com/tobid7) whose BCSTM-Player project served as a reference on the BCSTM format
* all the people who helped keep me going and motivated me to work. This includes, but is definitely not limited to: * The folks on #dev of Nintendo Homebrew, who helped with unicode shenanigans (especially [Stary2001](https://github.com/Stary2001), [Fenrir](https://github.com/FenrirWolf), and DanielKO).
* The maintainers for all used libraries, including but not limited to ctrulib, libarchive, citro3d, citro2d, and quirc. An especially big thanks to the devkitPro team for maintaining a phenomenal toolchain.
* All the people who helped keep me going and motivated me to work. This includes, but is definitely not limited to:
+ The members of the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) + The members of the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh)
+ The members of the __Secret Shack Service Discord__ + The members of the __Secret Shack Service Discord__

View File

@@ -24,6 +24,10 @@
* reasonable ways as different from the original version. * reasonable ways as different from the original version.
*/ */
// Badge implementation adapted from GYTB by MrCheeze and ABE by AntiMach
// https://github.com/AntiMach/advanced-badge-editor
// https://github.com/MrCheeze/GYTB
#include "badges.h" #include "badges.h"
#include "draw.h" #include "draw.h"
#include "ui_strings.h" #include "ui_strings.h"

View File

@@ -27,6 +27,9 @@
#include "music.h" #include "music.h"
#include "loading.h" #include "loading.h"
// BCSTM Player adapted from BCSTM-Player by tobid7
// https://github.com/NPI-D7/BCSTM-Player/blob/main/source/bcstm.hpp
u32 read32(char *music_buf, ssize_t *cursor) u32 read32(char *music_buf, ssize_t *cursor)
{ {
u32 ret; u32 ret;