mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-29 21:30:53 +00:00
Fix lookup of source var that references an array
This commit is contained in:
@@ -566,7 +566,7 @@ class TestCase:
|
||||
remaining = ''
|
||||
|
||||
# Otherwise, take off any child if we haven't started recursing
|
||||
m = re.match("([a-zA-Z0-9_]+)(\[|\..*)", path)
|
||||
m = re.match("([a-zA-Z0-9_]+)(\[.*|\..*)", path)
|
||||
if m:
|
||||
child = m.group(1)
|
||||
remaining = m.group(2)
|
||||
|
||||
Reference in New Issue
Block a user