Add UI font

This commit is contained in:
Dave Allie
2025-12-06 01:44:14 +11:00
parent aed915713b
commit 58cd36d51e
13 changed files with 4222 additions and 24 deletions
+4 -1
View File
@@ -26,7 +26,10 @@ class EpubReaderScreen final : public Screen {
public:
explicit EpubReaderScreen(EpdRenderer* renderer, Epub* epub, const std::function<void()>& onGoHome)
: Screen(renderer), epub(epub), onGoHome(onGoHome) {}
~EpubReaderScreen() override { free(section); }
~EpubReaderScreen() override {
free(section);
free(epub);
}
void onEnter() override;
void onExit() override;
void handleInput(Input input) override;