diff --git a/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/commands/palettechangecommand.cpp b/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/commands/palettechangecommand.cpp index d8a6d2d2..2da6338d 100644 --- a/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/commands/palettechangecommand.cpp +++ b/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/commands/palettechangecommand.cpp @@ -6,14 +6,14 @@ namespace nostalgia::gfx { -gfx::PaletteChangeCommand::PaletteChangeCommand( +PaletteChangeCommand::PaletteChangeCommand( TileSheet::SubSheetIdx idx, TileSheet &img, ox::StringViewCR newPalette) noexcept: - m_img(img), - m_idx(std::move(idx)), - m_oldPalette(m_img.defaultPalette), - m_newPalette(ox::sfmt>("uuid://{}", newPalette)) { + m_img{img}, + m_idx{std::move(idx)}, + m_oldPalette{m_img.defaultPalette}, + m_newPalette{ox::sfmt>("uuid://{}", newPalette)} { } ox::Error PaletteChangeCommand::redo() noexcept {