[olympic,nostalgia] Change order of oxModelFieldRename args

This commit is contained in:
2024-01-28 17:59:54 -06:00
parent 227dd68a4f
commit b75bbc4d20
3 changed files with 8 additions and 8 deletions
@@ -40,7 +40,7 @@ oxModelBegin(TileSheetClipboard::Pixel)
oxModelEnd()
oxModelBegin(TileSheetClipboard)
oxModelFieldRename(pixels, m_pixels)
oxModelFieldRename(m_pixels, pixels)
oxModelEnd()
class CutPasteCommand: public TileSheetCommand {
@@ -58,10 +58,10 @@ struct TileDoc {
};
oxModelBegin(TileDoc)
oxModelFieldRename(subsheet_id, subsheetId)
oxModelFieldRename(subsheet_path, subsheetPath)
oxModelFieldRename(subsheetId, subsheet_id)
oxModelFieldRename(subsheetPath, subsheet_path)
oxModelField(type)
oxModelFieldRename(layer_attachments, layerAttachments)
oxModelFieldRename(layerAttachments, layer_attachments)
oxModelEnd()
struct SceneDoc {