mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 07:47:03 -05:00
bug: Fix loading of bookmark name and comment from project file
Fixes #211
This commit is contained in:
@@ -21,7 +21,9 @@ namespace hex {
|
||||
j.at("locked").get_to(b.locked);
|
||||
|
||||
std::copy(name.begin(), name.end(), std::back_inserter(b.name));
|
||||
b.name.push_back('\0');
|
||||
std::copy(comment.begin(), comment.end(), std::back_inserter(b.comment));
|
||||
b.comment.push_back('\0');
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user