1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00

Fix decrypt_binaries_t::done()

This commit is contained in:
Eladash 2023-08-03 09:20:09 +03:00 committed by Elad Ashkenazi
parent 9f625de51a
commit 8057773c4f

View File

@ -16,7 +16,7 @@ public:
bool done() const
{
return m_index >= m_klics.size();
return m_index >= m_modules.size();
}
const std::string& operator[](usz index) const