From 75d05ea710f80a0ca2fdc53b638952a7a97e7ad8 Mon Sep 17 00:00:00 2001 From: Xusheng Date: Mon, 24 Aug 2020 21:46:36 +0800 Subject: display as in linear view --- architecture.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'architecture.cpp') diff --git a/architecture.cpp b/architecture.cpp index a3bd77fa..9415b966 100644 --- a/architecture.cpp +++ b/architecture.cpp @@ -2208,9 +2208,9 @@ void ArchitectureHook::Register(BNCustomArchitecture* callbacks) string DisassemblyTextRenderer::GetDisplayStringForInteger(Ref binaryView, BNIntegerDisplayType type, - uint64_t value, size_t inputWidth) + uint64_t value, size_t inputWidth, bool isSigned) { - char* str = BNGetDisplayStringForInteger(binaryView->GetObject(), type, value, inputWidth); + char* str = BNGetDisplayStringForInteger(binaryView->GetObject(), type, value, inputWidth, isSigned); string s(str); BNFreeString(str); return s; -- cgit v1.3.1