diff --git a/tools/cxbe/Exe.cpp b/tools/cxbe/Exe.cpp index 35be5b8a2..02e5f0f40 100644 --- a/tools/cxbe/Exe.cpp +++ b/tools/cxbe/Exe.cpp @@ -180,8 +180,8 @@ Exe::Exe(const char *x_szFilename) // constructor initialization void Exe::ConstructorInit() { - m_SectionHeader = nullptr; - m_bzSection = nullptr; + m_SectionHeader = NULL; + m_bzSection = NULL; } // deconstructor @@ -342,5 +342,5 @@ uint08 *Exe::GetAddr(uint32 x_dwVirtualAddress) return &m_bzSection[v][x_dwVirtualAddress - virt_addr]; } - return nullptr; + return NULL; }