Reworking of the resource system.
Resource indices (.ls2) now refer to string identifiers which are mapped to files by a global resource map (uqm.rmp). This meets Milestone 3 of the Resource System Phase 2 plan. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2868 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
@@ -18,7 +18,7 @@ def process (res):
|
||||
if mapline is None:
|
||||
toadd = "# NO MATCH FOR %s" % line
|
||||
else:
|
||||
toadd = "%s: %s" % (mapline, line)
|
||||
toadd = "%s = %s" % (mapline, line)
|
||||
if toadd not in result:
|
||||
result.append(toadd)
|
||||
result.sort()
|
||||
|
||||
Reference in New Issue
Block a user