From 00e298db332d000280c7bb4d1a221006eeff6616 Mon Sep 17 00:00:00 2001 From: EmeraldLockdown <86802223+EmeraldLoc@users.noreply.github.com> Date: Sun, 1 Mar 2026 23:29:09 -0600 Subject: [PATCH] [build] Now it should work (i still need to test with another pc(weewoo)) --- src/pc/network/packets/packet_join.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pc/network/packets/packet_join.c b/src/pc/network/packets/packet_join.c index 78d0d99c4..300cdb40f 100644 --- a/src/pc/network/packets/packet_join.c +++ b/src/pc/network/packets/packet_join.c @@ -102,7 +102,7 @@ void network_send_join(struct Packet* joinRequestPacket) { char filePath[256]; save_file_get_dir(gCurrSaveFileNum - 1, filePath, 256); - fs_file_t* fp = fs_open(fs_get_write_path(filePath)); + fs_file_t* fp = fs_open(filePath); if (fp != NULL) { fs_read(fp, eeprom, EEPROM_SIZE); fs_close(fp);