mirror of https://github.com/PCSX2/pcsx2.git
gsdx: init m_custom_width/height to a default value
Avoid useless warning on coverity
This commit is contained in:
parent
c41cf6c444
commit
1a09712f89
|
@ -25,6 +25,8 @@
|
||||||
GSRendererHW::GSRendererHW(GSTextureCache* tc)
|
GSRendererHW::GSRendererHW(GSTextureCache* tc)
|
||||||
: m_width(1280)
|
: m_width(1280)
|
||||||
, m_height(1024)
|
, m_height(1024)
|
||||||
|
, m_custom_width(1280)
|
||||||
|
, m_custom_height(1024)
|
||||||
, m_reset(false)
|
, m_reset(false)
|
||||||
, m_upscale_multiplier(1)
|
, m_upscale_multiplier(1)
|
||||||
, m_tc(tc)
|
, m_tc(tc)
|
||||||
|
|
Loading…
Reference in New Issue