mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 13:37:42 -05:00
sys: (s8, s16, s32, s64, s128) -> (i8, i16, i32, i64, i128)
This commit is contained in:
@@ -44,7 +44,7 @@ namespace hex {
|
||||
return std::string(data + index + 1);
|
||||
}
|
||||
|
||||
std::string to_string(s128 value) {
|
||||
std::string to_string(i128 value) {
|
||||
char data[45] = { 0 };
|
||||
|
||||
u128 unsignedValue = value < 0 ? -value : value;
|
||||
|
||||
Reference in New Issue
Block a user