Skip to content

Commit 211cc55

Browse files
nicholematteraJoel
authored andcommitted
Fixed name in Credits. (#74)
1 parent af3ea54 commit 211cc55

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ make
4444
# Credits:
4545

4646
- **Preetisketch** for some of the assets used as well as the banner.
47-
- **StevenMattera** for the implementing the foundation of all touch-screen code.
47+
- **NicholeMattera** for the implementing the foundation of all touch-screen code.
4848
- **grimfang4** for the original SDL_FontCache headers.
4949
- **theMealena** for CVE_gif*.

source/menus/menu_settings.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ static void Menu_DisplayAboutDialog(void) {
136136
SDL_GetTextDimensions(20, "NX Shell vX.X.X", &text1_width, NULL);
137137
SDL_GetTextDimensions(20, "Author: Joel16", &text2_width, NULL);
138138
SDL_GetTextDimensions(20, "Graphics: Preetisketch and CyanogenMod/LineageOS contributors", &text3_width, NULL);
139-
SDL_GetTextDimensions(20, "Touch screen: StevenMattera", &text4_width, NULL);
139+
SDL_GetTextDimensions(20, "Touch screen: NicholeMattera", &text4_width, NULL);
140140
SDL_GetTextDimensions(25, "OK", &confirm_width, &confirm_height);
141141

142142
SDL_QueryTexture(dialog, NULL, NULL, &dialog_width, &dialog_height);
@@ -147,7 +147,7 @@ static void Menu_DisplayAboutDialog(void) {
147147
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);
148148
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");
149149
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");
150-
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");
150+
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");
151151

152152
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);
153153
SDL_DrawText(1030 - (confirm_width), ((720 - (dialog_height)) / 2) + 245, 25, config.dark_theme? TITLE_COLOUR_DARK : TITLE_COLOUR, "OK");

0 commit comments

Comments
 (0)