Removed a comment that suggested that a feature doesnt work

it turns out it was working, i just thought it wasnt.
This commit is contained in:
CosminPerRam 2022-10-16 13:10:48 +03:00
parent 3ef9289dfb
commit 11964d530f

View file

@ -161,7 +161,7 @@ impl ValveProtocol {
}
};
let steam_id = match (value & 0x10) > 0 { //doesnt work?
let steam_id = match (value & 0x10) > 0 {
false => None,
true => {
let p = get_u64_from_buf(&buf[last_edf_position..]);