From c7afdf6aa17038a633d64894ec3d4aa93e7f0881 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 26 Dec 2021 15:03:30 +0100 Subject: [PATCH] Fix credits --- Makefile | 2 +- source/ApplicationState.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6fb30b6..be50527 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ TOPDIR ?= $(CURDIR) #------------------------------------------------------------------------------- APP_NAME := PayloadLoader Installer APP_SHORTNAME := PayloadLoader Installer -APP_AUTHOR := Maschell, rw, GaryOderNichts +APP_AUTHOR := Maschell, rw-r-r-0644, GaryOderNichts include $(DEVKITPRO)/wut/share/wut_rules diff --git a/source/ApplicationState.cpp b/source/ApplicationState.cpp index 3f91473..051e1fe 100644 --- a/source/ApplicationState.cpp +++ b/source/ApplicationState.cpp @@ -289,8 +289,8 @@ void ApplicationState::update(Input *input) { ApplicationState::ApplicationState() { menu.setOptionsCallback([this](auto &&newState) { changeState(std::forward(newState)); }); - menu.setFooter("By Maschell"); menu.setHeader("PayloadLoader Installer"); + menu.setFooter("By Maschell, rw-r-r-0644, GaryOderNichts"); changeState(STATE_WELCOME_SCREEN); DEBUG_FUNCTION_LINE("State has changed to \"STATE_WELCOME_SCREEN\"");