diff options
| author | Xusheng <xusheng@vector35.com> | 2020-08-24 21:46:36 +0800 |
|---|---|---|
| committer | Xusheng <xusheng@vector35.com> | 2020-09-15 09:29:54 +0800 |
| commit | 75d05ea710f80a0ca2fdc53b638952a7a97e7ad8 (patch) | |
| tree | f8fe2205178cd7942a1e6d45c79dda9d748b526f /architecture.cpp | |
| parent | 33e31719d37deed58cfe709bf475b80fece8c34a (diff) | |
display as in linear view
Diffstat (limited to 'architecture.cpp')
| -rw-r--r-- | architecture.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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> 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; |
