easter: add easter_egg

This commit is contained in:
souldbminersmwc
2026-01-18 18:47:43 -05:00
parent e928eda703
commit f1a5804b6c
3 changed files with 4149 additions and 1 deletions

View File

@@ -17,7 +17,8 @@
#include "../format.h"
#include <tesla.hpp>
#include <string>
#include "cat.h"
#include "ult_ext.h"
tsl::elm::ListItem* SpeedoItem = NULL;
tsl::elm::ListItem* IddqItem = NULL;
@@ -174,6 +175,16 @@ void AboutGui::listUI()
this->listElement->addItem(
new tsl::elm::ListItem("The Switch Homebrew Community")
);
this->listElement->addItem(
new tsl::elm::CategoryHeader("Cat")
);
this->listElement->addItem(
new ImageElement(CAT_DATA, CAT_WIDTH, CAT_HEIGHT)
);
this->listElement->addItem(new tsl::elm::CustomDrawer([](tsl::gfx::Renderer*, s32, s32, s32, s32) {}), 75); // add a bit of space
}
void AboutGui::update()