DIRECTOR: LINGO: Switch proplist value and prop order

It's the same order as the original now.
This commit is contained in:
djsrv 2021-06-17 17:34:04 -04:00 committed by D.J. Servilla
parent ced5aaeb3f
commit 38c0d5fddd

View File

@ -434,8 +434,8 @@ void LC::c_proparraypush() {
d.u.parr = new PropertyArray;
for (int i = 0; i < arraySize; i++) {
Datum p = g_lingo->pop();
Datum v = g_lingo->pop();
Datum p = g_lingo->pop();
PCell cell = PCell(p, v);
d.u.parr->insert_at(0, cell);