Compare commits

..

No commits in common. "b3beb878742944131ab185cde1003ec392302e05" and "4fba0529aef169c67a99709582109ca5c68f15de" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ use crate::character::character::SelectScreenCharacter;
use std::io::Read;
pub const PATCH_FILE_CHUNK_SIZE: u16 = 0x8000; // 32kb
pub const GUILD_CARD_CHUNK_SIZE: usize = 0x6800;
pub const PARAM_DATA_CHUNK_SIZE: usize = 0x6800;

View File

@ -3,7 +3,7 @@ use crate::{PSOPacket, PacketParseError, PSOPacketData};
use std::io::Read;
pub const PATCH_FILE_CHUNK_SIZE: u16 = 0x6000; // 24kb
pub const PATCH_FILE_CHUNK_SIZE: u16 = 0x8000; // 32kb
#[allow(non_camel_case_types)]
type u8_str = u8;