mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- Fixed: M_DrawSave() and M_DrawLoad() need to use GetScaledWidth(), in case
the texture is high-res. SVN r982 (trunk)
This commit is contained in:
parent
01e1295c50
commit
2878e1870a
2 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,6 @@
|
|||
May 19, 2008
|
||||
- Fixed: M_DrawSave() and M_DrawLoad() need to use GetScaledWidth(), in case
|
||||
the texture is high-res.
|
||||
- Replaced all instances of "flags +=" in sbarinfo_parser.cpp with "flags |="
|
||||
so that using the same flag multiple times will not have unexpected results.
|
||||
|
||||
|
|
|
@ -930,8 +930,8 @@ void M_DrawLoad (void)
|
|||
{
|
||||
FTexture *title = TexMan["M_LOADG"];
|
||||
screen->DrawTexture (title,
|
||||
(SCREENWIDTH-title->GetWidth()*CleanXfac)/2, 20*CleanYfac,
|
||||
DTA_CleanNoMove, true, TAG_DONE);
|
||||
(SCREENWIDTH-title->GetScaledWidth()*CleanXfac)/2, 20*CleanYfac,
|
||||
DTA_CleanNoMove, true, DTA_BilinearFilter, true, TAG_DONE);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue