diff options
author | Tony Puccinelli | 2010-08-07 22:27:23 +0000 |
---|---|---|
committer | Tony Puccinelli | 2010-08-07 22:27:23 +0000 |
commit | de1e941370b7e2fad704e072eccfb79b3db1399b (patch) | |
tree | de9301877a963f4688dd919d65cc488510b76ba5 /backends/plugins/mips-loader.h | |
parent | 68b986545a7ce24e3c0d2a8635d538941b67729f (diff) | |
download | scummvm-rg350-de1e941370b7e2fad704e072eccfb79b3db1399b.tar.gz scummvm-rg350-de1e941370b7e2fad704e072eccfb79b3db1399b.tar.bz2 scummvm-rg350-de1e941370b7e2fad704e072eccfb79b3db1399b.zip |
refined constructors, removed destructors, got rid of unneccessary method duplication in DLObject and its subtypes
svn-id: r51845
Diffstat (limited to 'backends/plugins/mips-loader.h')
-rw-r--r-- | backends/plugins/mips-loader.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/backends/plugins/mips-loader.h b/backends/plugins/mips-loader.h index 9d13feccbb..eb22e368f4 100644 --- a/backends/plugins/mips-loader.h +++ b/backends/plugins/mips-loader.h @@ -39,15 +39,7 @@ protected: void unload(); public: - MIPSDLObject() { - _segment = NULL; - _symtab = NULL; - _strtab = NULL; - _symbol_cnt = 0; - _symtab_sect = -1; - _dtors_start = NULL; - _dtors_end = NULL; - _segmentSize = 0; + MIPSDLObject() : DLObject() { _shortsSegment = NULL; _gpVal = 0; } |