Skip to content

Commit 41a85be

Browse files
committed
fix input scalar in typed debugger window
1 parent 085afc0 commit 41a85be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/widgets/typed_debugger.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ void PCSX::Widgets::TypedDebugger::displayNewValueInput(const char* type, size_t
569569

570570
m_newValues[address] = *value.data<uint8_t>();
571571
if (ImGui::InputScalar(fmt::format(f_("##{}"), address).c_str(), ImGuiDataType_U8,
572-
&m_newValues[address], &step, &stepFast, signedFormat, inputFlags)) {
572+
&m_newValues[address], &step, &stepFast, unsignedFormat, inputFlags)) {
573573
memFile->write<uint8_t>(m_newValues[address]);
574574
}
575575
}

0 commit comments

Comments
 (0)