From 5d391ef70cacd97003b370a74e2a39816c205773 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Thu, 22 Oct 2020 17:16:39 +0200 Subject: [PATCH] source/Graphics/Texture.cpp: minor fix. --- source/Graphics/Texture.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/Graphics/Texture.cpp b/source/Graphics/Texture.cpp index b9afffe..d275ce6 100644 --- a/source/Graphics/Texture.cpp +++ b/source/Graphics/Texture.cpp @@ -29,8 +29,9 @@ namespace { } Texture::Texture() : -m_id (0), -m_size (0, 0) +m_id (0), +m_size (0, 0), +m_format (PixelFormat::PF_Unknown) { }