mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Issue #39. Fixed some edges not being drawn due to case-sensitivity.
This commit is contained in:
@@ -93,8 +93,8 @@ namespace boss {
|
||||
boost::tie(vit, vit_end) = boost::vertices(graph);
|
||||
|
||||
for (vit, vit_end; vit != vit_end; ++vit) {
|
||||
// if (boost::iequals(graph[*vit]->Name(), name)) {
|
||||
if (graph[*vit]->Name() == name) {
|
||||
if (boost::iequals(graph[*vit]->Name(), name)) {
|
||||
// if (graph[*vit]->Name() == name) {
|
||||
vertex = *vit;
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user