From a1fcd9e6e3bcc901231fef37b2dfa9bcd3eb21ef Mon Sep 17 00:00:00 2001 From: Nichole Mattera <697668+NicholeMattera@users.noreply.github.com> Date: Tue, 7 Jan 2020 20:03:47 -0500 Subject: [PATCH] Fixed name. --- README.md | 2 +- source/menus/menu_settings.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 202f9c0..cf61b93 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,6 @@ make # Credits: - **Preetisketch** for some of the assets used as well as the banner. -- **StevenMattera** for the implementing the foundation of all touch-screen code. +- **NicholeMattera** for the implementing the foundation of all touch-screen code. - **grimfang4** for the original SDL_FontCache headers. - **theMealena** for CVE_gif*. diff --git a/source/menus/menu_settings.c b/source/menus/menu_settings.c index e3155db..a077d55 100644 --- a/source/menus/menu_settings.c +++ b/source/menus/menu_settings.c @@ -136,7 +136,7 @@ static void Menu_DisplayAboutDialog(void) { SDL_GetTextDimensions(20, "NX Shell vX.X.X", &text1_width, NULL); SDL_GetTextDimensions(20, "Author: Joel16", &text2_width, NULL); SDL_GetTextDimensions(20, "Graphics: Preetisketch and CyanogenMod/LineageOS contributors", &text3_width, NULL); - SDL_GetTextDimensions(20, "Touch screen: StevenMattera", &text4_width, NULL); + SDL_GetTextDimensions(20, "Touch screen: NicholeMattera", &text4_width, NULL); SDL_GetTextDimensions(25, "OK", &confirm_width, &confirm_height); SDL_QueryTexture(dialog, NULL, NULL, &dialog_width, &dialog_height); @@ -147,7 +147,7 @@ static void Menu_DisplayAboutDialog(void) { SDL_DrawTextf(((1280 - (text1_width)) / 2), ((720 - (dialog_height)) / 2) + 70, 20, config.dark_theme? TEXT_MIN_COLOUR_DARK : TEXT_MIN_COLOUR_LIGHT, "NX Shell v%d.%d.%d", VERSION_MAJOR, VERSION_MINOR, VERSION_MICRO); SDL_DrawText(((1280 - (text2_width)) / 2), ((720 - (dialog_height)) / 2) + 100, 20, config.dark_theme? TEXT_MIN_COLOUR_DARK : TEXT_MIN_COLOUR_LIGHT, "Author: Joel16"); SDL_DrawText(((1280 - (text3_width)) / 2), ((720 - (dialog_height)) / 2) + 130, 20, config.dark_theme? TEXT_MIN_COLOUR_DARK : TEXT_MIN_COLOUR_LIGHT, "Graphics: Preetisketch and CyanogenMod/LineageOS contributors"); - SDL_DrawText(((1280 - (text4_width)) / 2), ((720 - (dialog_height)) / 2) + 160, 20, config.dark_theme? TEXT_MIN_COLOUR_DARK : TEXT_MIN_COLOUR_LIGHT, "Touch screen: StevenMattera"); + SDL_DrawText(((1280 - (text4_width)) / 2), ((720 - (dialog_height)) / 2) + 160, 20, config.dark_theme? TEXT_MIN_COLOUR_DARK : TEXT_MIN_COLOUR_LIGHT, "Touch screen: NicholeMattera"); SDL_DrawRect((1030 - (confirm_width)) - 20, (((720 - (dialog_height)) / 2) + 245) - 20, confirm_width + 40, confirm_height + 40, config.dark_theme? SELECTOR_COLOUR_DARK : SELECTOR_COLOUR_LIGHT); SDL_DrawText(1030 - (confirm_width), ((720 - (dialog_height)) / 2) + 245, 25, config.dark_theme? TITLE_COLOUR_DARK : TITLE_COLOUR, "OK");