CStringTable: Remove unnecessary initializer

std::unique_ptr always initializes to nullptr. We can remove this
implicit convertion from 0 to nullptr.
This commit is contained in:
Lioncash 2019-09-01 03:16:51 -04:00
parent e23dfbd8db
commit d5fa8b72b0
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ namespace urde {
class CStringTable {
static FourCC mCurrentLanguage;
u32 x0_stringCount = 0;
std::unique_ptr<u8[]> x4_data = 0;
std::unique_ptr<u8[]> x4_data;
u32 m_bufLen;
public: