From 209658549c8afeaf18c8948465f34fc84b78b866 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 9 May 2025 20:34:04 -0500 Subject: [PATCH] [nostalgia/gfx/studio/tilesheet] Cleanup --- .../src/studio/tilesheeteditor/commands/deletetilescommand.cpp | 2 +- .../studio/tilesheeteditor/commands/updatesubsheetcommand.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/commands/deletetilescommand.cpp b/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/commands/deletetilescommand.cpp index f985e156..9940b18f 100644 --- a/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/commands/deletetilescommand.cpp +++ b/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/commands/deletetilescommand.cpp @@ -28,7 +28,7 @@ DeleteTilesCommand::DeleteTilesCommand( } } -ox::Error gfx::DeleteTilesCommand::redo() noexcept { +ox::Error DeleteTilesCommand::redo() noexcept { auto &s = getSubSheet(m_img, m_idx); auto &p = s.pixels; auto const srcPos = m_deletePos + m_deleteSz; diff --git a/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/commands/updatesubsheetcommand.cpp b/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/commands/updatesubsheetcommand.cpp index 03df8255..9d084e3f 100644 --- a/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/commands/updatesubsheetcommand.cpp +++ b/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/commands/updatesubsheetcommand.cpp @@ -6,7 +6,7 @@ namespace nostalgia::gfx { -gfx::UpdateSubSheetCommand::UpdateSubSheetCommand( +UpdateSubSheetCommand::UpdateSubSheetCommand( TileSheet &img, TileSheet::SubSheetIdx idx, ox::StringParam name,