[nostalgia/gfx/studio] Fix warning
Build / build (push) Successful in 1m16s

This commit is contained in:
2026-05-23 01:12:53 -05:00
parent 75039f6056
commit f949d22b8e
2 changed files with 0 additions and 2 deletions
@@ -71,7 +71,6 @@ void PaletteEditorImGui::PageRenameDialog::draw() noexcept {
PaletteEditorImGui::PaletteEditorImGui(studio::Context &sctx, ox::StringParam path):
Editor(sctx, std::move(path)),
m_sctx(sctx),
m_tctx(sctx.tctx),
m_pal(m_sctx.project->loadObj<Palette>(itemPath()).unwrapThrow()) {
undoStack()->changeTriggered.connect(this, &PaletteEditorImGui::handleCommand);
m_pageRenameDlg.inputSubmitted.connect(this, &PaletteEditorImGui::renamePage);
@@ -32,7 +32,6 @@ class PaletteEditorImGui: public studio::Editor {
void draw() noexcept;
} m_pageRenameDlg;
studio::Context &m_sctx;
turbine::Context &m_tctx;
Palette m_pal;
size_t m_selectedColorRow = 0;
size_t m_page = 0;