Return the noteType for columnCues instead of isMine.

This commit is contained in:
Michael Votaw
2024-08-07 17:28:27 -05:00
committed by teejusb
parent 5db1a56d48
commit f96ee75ccc
3 changed files with 14 additions and 12 deletions
+2 -2
View File
@@ -844,8 +844,8 @@ public:
lua_pushinteger(L, cues[i].columns[c].colNum);
lua_settable(L, -3);
lua_pushstring(L, "isMine");
lua_pushboolean(L, cues[i].columns[c].isMine);
lua_pushstring(L, "noteType");
lua_pushinteger(L, cues[i].columns[c].noteType);
lua_settable(L, -3);
lua_rawseti(L, -2, c + 1);