diff options
| author | JosJuice <josjuice@gmail.com> | 2017-11-19 08:44:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-19 08:44:29 +0100 |
| commit | 4c23516b1671a61319d47edbb1c3b4bf069d289f (patch) | |
| tree | f6cedbe39aa2d83b98a772cffbeb42834b4afc03 /Source/Core/VideoCommon/AbstractTexture.cpp | |
| parent | 7372bb02b522e35d6f1c1b6f9a9c27e2707417ee (diff) | |
| parent | 2bd88bdb9fd3e80fc2a3263454a81e603aed14bd (diff) | |
Merge pull request #6202 from lioncash/reorder-warn
AbstractTexture: Remove a redundant constructor initializer list entry
Diffstat (limited to 'Source/Core/VideoCommon/AbstractTexture.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/AbstractTexture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/AbstractTexture.cpp b/Source/Core/VideoCommon/AbstractTexture.cpp index 0e92b6f7bd..7e4f493601 100644 --- a/Source/Core/VideoCommon/AbstractTexture.cpp +++ b/Source/Core/VideoCommon/AbstractTexture.cpp @@ -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) { } |
