From 472f5702bde8b6d4fc789a81283ff899cac181ea Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 22 Feb 2025 15:31:39 -0600 Subject: [PATCH] [nostalgia/gfx/studio/tilesheet] Change max export scale to 135 --- .../gfx/src/studio/tilesheeteditor/tilesheeteditor-imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/tilesheeteditor-imgui.cpp b/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/tilesheeteditor-imgui.cpp index 4809aa19..6e94845b 100644 --- a/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/tilesheeteditor-imgui.cpp +++ b/src/nostalgia/modules/gfx/src/studio/tilesheeteditor/tilesheeteditor-imgui.cpp @@ -642,7 +642,7 @@ void TileSheetEditorImGui::ExportMenu::draw(turbine::Context &tctx) noexcept { constexpr auto popupSz = ImVec2{popupWidth, popupHeight}; if (ig::BeginPopup(tctx, popupName, m_show, popupSz)) { ImGui::InputInt("Scale", &m_scale); - m_scale = ox::clamp(m_scale, 1, 50); + m_scale = ox::clamp(m_scale, 1, 135); if (ig::PopupControlsOkCancel(popupWidth, m_show) == ig::PopupResponse::OK) { inputSubmitted.emit(m_scale); }