ANDROID: Ignore subdirectories of asset archives.

This commit is contained in:
Alyssa Milburn 2013-05-16 12:56:41 +02:00
parent 89d9a624d9
commit c96b75e1f7

View file

@ -461,7 +461,9 @@ int AndroidAssetArchive::listMembers(Common::ArchiveMemberList &member_list) con
member_list.push_back(getMember(thispath)); member_list.push_back(getMember(thispath));
++count; ++count;
} else { } else {
dirlist.push_back(thispath); // AssetManager is ridiculously slow and we don't care
// about subdirectories at the moment, so ignore them.
// dirlist.push_back(thispath);
} }
} }