mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-02 23:26:43 +00:00
Trivial fix on wxFont style/weight usage
This commit is contained in:
parent
da1b032793
commit
a0eca54f96
@ -53,8 +53,8 @@ pxWindowTextWriter& pxWindowTextWriter::SetStyle( wxFontStyle style )
|
||||
pxWindowTextWriter& pxWindowTextWriter::Normal()
|
||||
{
|
||||
wxFont curfont( m_dc.GetFont() );
|
||||
curfont.SetStyle( wxFONTWEIGHT_NORMAL );
|
||||
curfont.SetWeight( wxFONTSTYLE_NORMAL );
|
||||
curfont.SetStyle( wxFONTSTYLE_NORMAL );
|
||||
curfont.SetWeight( wxFONTWEIGHT_NORMAL );
|
||||
m_dc.SetFont( curfont );
|
||||
|
||||
return *this;
|
||||
|
Loading…
Reference in New Issue
Block a user