gsdx: init m_custom_width/height to a default value

Avoid useless warning on coverity
This commit is contained in:
Gregory Hainaut 2016-08-12 22:48:20 +02:00
parent c41cf6c444
commit 1a09712f89
1 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,8 @@
GSRendererHW::GSRendererHW(GSTextureCache* tc)
: m_width(1280)
, m_height(1024)
, m_custom_width(1280)
, m_custom_height(1024)
, m_reset(false)
, m_upscale_multiplier(1)
, m_tc(tc)