doin' some cleanup...

This commit is contained in:
asrael 2026-04-14 13:16:47 -05:00
parent 40f5cdcaa5
commit f6d6efea95
16 changed files with 136 additions and 182 deletions

View file

@ -43,7 +43,6 @@ struct pxl8_net {
socket_t sock;
u8 recv_buf[4096];
u8 send_buf[4096];
#ifdef PXL8_ASYNC_THREADS
pxl8_thread* recv_thread;
@ -220,11 +219,4 @@ void pxl8_net_packet_free(pxl8_packet* pkt) {
pxl8_free(pkt);
}
bool pxl8_net_process_packet(pxl8_net* net, const pxl8_packet* pkt) {
if (!net || !pkt) return false;
(void)net;
(void)pkt;
return false;
}
#endif