mirror of
https://github.com/nzp-team/glquake.git
synced 2024-11-10 06:31:35 +00:00
Allow map graphics on the menu to stretch to 175x100 instead of displaying in full
This commit is contained in:
parent
3afbec0281
commit
e2d4a0720e
1 changed files with 1 additions and 1 deletions
|
@ -855,7 +855,7 @@ void M_Menu_CustomMaps_Draw (void)
|
||||||
if (custom_maps[i + multiplier].map_use_thumbnail == 1) {
|
if (custom_maps[i + multiplier].map_use_thumbnail == 1) {
|
||||||
menu_cuthum = Draw_CachePic(custom_maps[i + multiplier].map_thumbnail_path);
|
menu_cuthum = Draw_CachePic(custom_maps[i + multiplier].map_thumbnail_path);
|
||||||
if (menu_cuthum != NULL) {
|
if (menu_cuthum != NULL) {
|
||||||
Draw_Pic(256, 45, menu_cuthum);
|
Draw_StretchPic(256, 45, menu_cuthum, 175, 100);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue