AbstractTexture: Remove a redundant constructor initializer list entry

This is already initialized in the class definition. This would
previously cause a -Wreorder warning on macOS, as m_config is
defined after m_currently_mapped.
This commit is contained in:
Lioncash 2017-11-19 01:23:19 -05:00
parent 9b100c6112
commit 2bd88bdb9f
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
#include "VideoCommon/AbstractTexture.h"
#include "VideoCommon/ImageWrite.h"
AbstractTexture::AbstractTexture(const TextureConfig& c) : m_config(c), m_currently_mapped(false)
AbstractTexture::AbstractTexture(const TextureConfig& c) : m_config(c)
{
}