mirror of https://github.com/AxioDL/metaforce.git
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:
parent
e23dfbd8db
commit
d5fa8b72b0
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue