Remove Win32 byte pointers from DLC file interfaces

This commit is contained in:
notmatthewbeshay
2026-03-10 00:17:57 +11:00
parent b02bcd27f5
commit 66538b67f2
19 changed files with 57 additions and 56 deletions

View File

@@ -19,8 +19,8 @@ DLCColourTableFile::~DLCColourTableFile()
}
}
void DLCColourTableFile::addData(PBYTE pbData, DWORD dwBytes)
void DLCColourTableFile::addData(uint8_t *pbData, DWORD dwBytes)
{
ColourTable *defaultColourTable = Minecraft::GetInstance()->skins->getDefault()->getColourTable();
m_colourTable = new ColourTable(defaultColourTable, pbData, dwBytes);
}
}