http -> https on URLs

This commit is contained in:
Tim Angus 2025-08-05 15:39:16 +01:00
parent 6367fdfe28
commit 31f79ca94e
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ static void UI_CreditMenu_Draw_ioq3( void ) {
y += 1.42 * PROP_HEIGHT * PROP_SMALL_SIZE_SCALE; y += 1.42 * PROP_HEIGHT * PROP_SMALL_SIZE_SCALE;
} }
UI_DrawString( 320, 459, "http://www.ioquake3.org/", UI_CENTER|UI_SMALLFONT, color_red ); UI_DrawString( 320, 459, "https://www.ioquake3.org/", UI_CENTER|UI_SMALLFONT, color_red );
} }

View File

@ -797,7 +797,7 @@ int main( int argc, char **argv )
{ {
Sys_Dialog( DT_ERROR, va( "SDL version " MINSDL_VERSION " or greater is required, " Sys_Dialog( DT_ERROR, va( "SDL version " MINSDL_VERSION " or greater is required, "
"but only version %d.%d.%d was found. You may be able to obtain a more recent copy " "but only version %d.%d.%d was found. You may be able to obtain a more recent copy "
"from http://www.libsdl.org/.", ver.major, ver.minor, ver.patch ), "SDL Library Too Old" ); "from https://www.libsdl.org/.", ver.major, ver.minor, ver.patch ), "SDL Library Too Old" );
Sys_Exit( 1 ); Sys_Exit( 1 );
} }