diff options
| author | fires.gc <fires.gc@gmail.com> | 2009-02-28 02:01:11 +0000 |
|---|---|---|
| committer | fires.gc <fires.gc@gmail.com> | 2009-02-28 02:01:11 +0000 |
| commit | b3a302e05084fd57762cc2a6e049021b21e9643a (patch) | |
| tree | 052087e99519090372a53ba4d2c478b1f511a0c6 /Source/Core/DiscIO | |
| parent | 9ecd02510714c7c26ffec4245b29981bb9584276 (diff) | |
...
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2463 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO')
| -rw-r--r-- | Source/Core/DiscIO/Src/NANDContentLoader.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DiscIO/Src/NANDContentLoader.cpp b/Source/Core/DiscIO/Src/NANDContentLoader.cpp index 8ae3ac14dc..b52fe15ccc 100644 --- a/Source/Core/DiscIO/Src/NANDContentLoader.cpp +++ b/Source/Core/DiscIO/Src/NANDContentLoader.cpp @@ -66,11 +66,11 @@ CNANDContentLoader::CNANDContentLoader(const std::string& _rName) CNANDContentLoader::~CNANDContentLoader()
{
- for (size_t i=0; i<m_TileMetaContent.size(); i++)
+ for (size_t i=0; i<m_Content.size(); i++)
{
- delete [] m_TileMetaContent[i].m_pData;
+ delete [] m_Content[i].m_pData;
}
- m_TileMetaContent.clear();
+ m_Content.clear();
}
SNANDContent* CNANDContentLoader::GetContentByIndex(int _Index)
|
