1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-21 18:22:33 +01:00

lockless.h: Fixup addressing

This commit is contained in:
Elad 2024-11-18 17:23:47 +02:00
parent 21f65f087d
commit 1dfee5fbfa

View File

@ -41,7 +41,7 @@ public:
{
if (index - i < N)
{
result = std::addressof(m_data[index - i]);
result = std::addressof(_this->m_data[index - i]);
break;
}