Fix minor copypasta error in R_DrawGetPicSize().

This commit is contained in:
Knightmare66 2019-04-05 15:56:13 -04:00
parent da1f56a0c5
commit af85a6bf80

View file

@ -226,7 +226,7 @@ void R_DrawGetPicSize (int *w, int *h, char *pic)
}
// Factor in replace scale, so tga/jpg replacements are scaled down...
*w = (int)((float)gl->width * gl->replace_scale_w);
*h = (int)((float)gl->height * gl->replace_scale_w);
*h = (int)((float)gl->height * gl->replace_scale_h);
}