mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-29 16:30:02 -05:00
fix: Another P2468R2 issue
This commit is contained in:
@@ -492,7 +492,7 @@ namespace hex::plugin::builtin {
|
||||
for (auto &node : input["nodes"]) {
|
||||
std::unique_ptr<dp::Node> newNode;
|
||||
for (auto &entry : nodeEntries) {
|
||||
if (entry.name == node["type"])
|
||||
if (entry.name == node["type"].get<std::string>())
|
||||
newNode = entry.creatorFunction();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user