mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 03:47:43 +00:00
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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user