CFontLoader: Default constructor

This commit is contained in:
Lioncash 2020-06-14 16:51:13 -04:00
parent e49315a645
commit 01e68ec5d8
2 changed files with 2 additions and 5 deletions

View File

@ -1,10 +1,7 @@
#include "CFontLoader.h"
#include <Common/Log.h>
#include <iostream>
CFontLoader::CFontLoader()
{
}
CFontLoader::CFontLoader() = default;
void CFontLoader::LoadFont(IInputStream& rFONT)
{

View File

@ -9,7 +9,7 @@
class CFontLoader
{
TResPtr<CFont> mpFont;
EGame mVersion;
EGame mVersion{};
CFontLoader();
void LoadFont(IInputStream& rFONT);