@@ -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