mirror of
https://github.com/blendogames/thirtyflightsofloving.git
synced 2025-02-07 15:51:11 +00:00
Fix minor copypasta error in R_DrawGetPicSize().
This commit is contained in:
parent
da1f56a0c5
commit
af85a6bf80
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ void R_DrawGetPicSize (int *w, int *h, char *pic)
|
||||||
}
|
}
|
||||||
// Factor in replace scale, so tga/jpg replacements are scaled down...
|
// Factor in replace scale, so tga/jpg replacements are scaled down...
|
||||||
*w = (int)((float)gl->width * gl->replace_scale_w);
|
*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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue