Add support to patch save message in scn

This commit is contained in:
2025-09-03 19:39:40 +08:00
parent 405f663b27
commit 279d6a5573
2 changed files with 80 additions and 74 deletions

View File

@@ -303,7 +303,7 @@ impl Index<usize> for PsbValueFixed {
fn index(&self, index: usize) -> &Self::Output {
match self {
PsbValueFixed::List(l) => &l.values[index],
PsbValueFixed::List(l) => &l[index],
_ => &NONE,
}
}