🎨 Clean up overuse of SDL types

This commit is contained in:
Anders Jenbo 2021-04-24 06:23:58 +02:00
commit 7912e510f0
59 changed files with 1775 additions and 1755 deletions

View file

@ -15,7 +15,7 @@ TMsg *sgpTimedMsgHead;
} // namespace
int tmsg_get(Uint8 *pbMsg)
int tmsg_get(BYTE *pbMsg)
{
int len;
TMsg *head;
@ -34,7 +34,7 @@ int tmsg_get(Uint8 *pbMsg)
return len;
}
void tmsg_add(Uint8 *pbMsg, Uint8 bLen)
void tmsg_add(BYTE *pbMsg, uint8_t bLen)
{
TMsg **tail;