More packet bytesize cleanup

This commit is contained in:
MysterD 2022-06-06 20:50:00 -07:00
parent 4dde3d4cfe
commit 4da9812d9b
2 changed files with 5 additions and 5 deletions

View File

@ -66,7 +66,7 @@ void network_send_area(struct NetworkPlayer* toNp) {
} }
// count respawners and write // count respawners and write
u8 respawnerCount = 0; u16 respawnerCount = 0;
for (struct SyncObject* so = sync_object_get_first(); so != NULL; so = sync_object_get_next()) { for (struct SyncObject* so = sync_object_get_first(); so != NULL; so = sync_object_get_next()) {
if (so->o != NULL && so->o->behavior == smlua_override_behavior(bhvRespawner)) { if (so->o != NULL && so->o->behavior == smlua_override_behavior(bhvRespawner)) {
@ -74,7 +74,7 @@ void network_send_area(struct NetworkPlayer* toNp) {
} }
} }
packet_write(&p, &respawnerCount, sizeof(u8)); packet_write(&p, &respawnerCount, sizeof(u16));
// write respawners // write respawners
for (struct SyncObject* so = sync_object_get_first(); so != NULL; so = sync_object_get_next()) { for (struct SyncObject* so = sync_object_get_first(); so != NULL; so = sync_object_get_next()) {
@ -194,8 +194,8 @@ void network_receive_area(struct Packet* p) {
} }
// read respawner count // read respawner count
u8 respawnerCount = 0; u16 respawnerCount = 0;
packet_read(p, &respawnerCount, sizeof(u8)); packet_read(p, &respawnerCount, sizeof(u16));
// read respawners // read respawners
for (s32 i = 0; i < respawnerCount; i++) { for (s32 i = 0; i < respawnerCount; i++) {

View File

@ -33,7 +33,7 @@ void network_receive_reservation_list(struct Packet* p) {
SOFT_ASSERT(gNetworkType == NT_CLIENT); SOFT_ASSERT(gNetworkType == NT_CLIENT);
LOG_INFO("rx reservation list"); LOG_INFO("rx reservation list");
u8 courseNum, actNum, levelNum, areaIndex; s16 courseNum, actNum, levelNum, areaIndex;
packet_read(p, &courseNum, sizeof(s16)); packet_read(p, &courseNum, sizeof(s16));
packet_read(p, &actNum, sizeof(s16)); packet_read(p, &actNum, sizeof(s16));
packet_read(p, &levelNum, sizeof(s16)); packet_read(p, &levelNum, sizeof(s16));