Remove patch for play source change.

This commit is contained in:
yukirij 2024-10-04 20:33:57 -07:00
parent 08686670d8
commit 239276508e

View File

@ -266,13 +266,13 @@ impl FileSystem {
file.read_exact(&mut buffer).map_err(|_| ())?;
let data = unpack_u16(&buffer, &mut 0);
let mut play = Play {
let play = Play {
source:(data & 0xF) as u8,
from:((data >> 4) & 0x3F) as u8,
to:((data >> 10) & 0x3F) as u8,
};
match play.source {
/*match play.source {
2 => {
play.source = 0xF;
file.seek(SeekFrom::Current(-2)).map_err(|_| ())?;
@ -292,7 +292,7 @@ impl FileSystem {
)).map_err(|_| ())?;
}
_ => { }
}
}*/
result.push(play);
}