Hallo,
habe folgenden Error in der syserr entdeckt:
CPythonSafeBox::DelMallItemData(dwSlotIndex=198) - Strange slot index
Das ist dazugehörige Funktion:
Code
- void CPythonSafeBox::DelMallItemData(uint32_t dwSlotIndex)
- {
- if (dwSlotIndex >= m_MallItemInstanceVector.size())
- {
- TraceError("CPythonSafeBox::DelMallItemData(dwSlotIndex=%d) - Strange slot index", dwSlotIndex);
- return;
- }
- TItemData & rInstance = m_MallItemInstanceVector[dwSlotIndex];
- ZeroMemory(&rInstance, sizeof(rInstance));
- }
Ich verstehe nun allerdings das Problem nicht, da ich kaum Ahnung in C++ habe. Kann mir da jemand erklären was schief ist? Die Mall funkt, das Lager funkt, an sich geht alles, verstehe es nicht wirklich. Ty