From 462f18c7b25fe3e467f837647d07ab0a78aa8d2b Mon Sep 17 00:00:00 2001 From: marha Date: Sun, 22 Feb 2015 21:39:56 +0100 Subject: Merged origin/release (checked in because wanted to merge new stuff) --- mesalib/src/hgl/GLRendererRoster.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mesalib/src/hgl') diff --git a/mesalib/src/hgl/GLRendererRoster.cpp b/mesalib/src/hgl/GLRendererRoster.cpp index d29f7ecc8..9e5d847a1 100644 --- a/mesalib/src/hgl/GLRendererRoster.cpp +++ b/mesalib/src/hgl/GLRendererRoster.cpp @@ -144,7 +144,7 @@ GLRendererRoster::AddPath(const char* path) entry_ref ref; BEntry entry; while (directory.GetNextRef(&ref) == B_OK) { - entry.SetTo(&ref); + entry.SetTo(&ref, true); if (entry.InitCheck() == B_OK && !entry.IsFile()) continue; @@ -187,7 +187,7 @@ GLRendererRoster::AddRenderer(BGLRenderer* renderer, status_t GLRendererRoster::CreateRenderer(const entry_ref& ref) { - BEntry entry(&ref); + BEntry entry(&ref, true); node_ref nodeRef; status_t status = entry.GetNodeRef(&nodeRef); if (status < B_OK) -- cgit v1.2.3