Allow map graphics on the menu to stretch to 175x100 instead of displaying in full

This commit is contained in:
Ian 2023-03-20 16:37:32 -04:00 committed by GitHub
parent 3afbec0281
commit e2d4a0720e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -855,7 +855,7 @@ void M_Menu_CustomMaps_Draw (void)
if (custom_maps[i + multiplier].map_use_thumbnail == 1) {
menu_cuthum = Draw_CachePic(custom_maps[i + multiplier].map_thumbnail_path);
if (menu_cuthum != NULL) {
Draw_Pic(256, 45, menu_cuthum);
Draw_StretchPic(256, 45, menu_cuthum, 175, 100);
}
}