Bugfix; @iximeow, swizzle was wrong

This commit is contained in:
Reid 'arrdem' McKenzie 2022-12-22 22:11:31 -07:00
parent d74018e762
commit 802a369a8e

View file

@ -143,7 +143,7 @@ impl Uxn {
if rflag == 0 { if rflag == 0 {
[self.wst.clone(), self.rst.clone()] [self.wst.clone(), self.rst.clone()]
} else { } else {
[self.wst.clone(), self.rst.clone()] [self.rst.clone(), self.wst.clone()]
} }
}; };