mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-17 01:22:18 +00:00
Fixed: check for mathing argument lists was doing god-knows-what. Should now be ok.
This commit is contained in:
parent
679f2eec62
commit
6988bae720
3 changed files with 5 additions and 5 deletions
|
@ -424,11 +424,11 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
|
||||
for(int i = 0; i < info1.Length; i++)
|
||||
{
|
||||
if(info1[i].Used != info1[i].Used || info1[i].Type != info1[i].Type
|
||||
if(info1[i].Used != info2[i].Used || info1[i].Type != info2[i].Type
|
||||
|| info1[i].Title.ToUpperInvariant() != info2[i].Title.ToUpperInvariant())
|
||||
return false;
|
||||
|
||||
haveusedargs |= (info1[i].Used || info1[i].Used);
|
||||
haveusedargs |= info1[i].Used;
|
||||
}
|
||||
|
||||
return haveusedargs;
|
||||
|
|
|
@ -30,6 +30,6 @@ using CodeImp.DoomBuilder;
|
|||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
[assembly: AssemblyVersion("2.3.0.2905")]
|
||||
[assembly: AssemblyVersion("2.3.0.2906")]
|
||||
[assembly: NeutralResourcesLanguageAttribute("en")]
|
||||
[assembly: AssemblyHash("271df46")]
|
||||
[assembly: AssemblyHash("679f2ee")]
|
||||
|
|
|
@ -29,5 +29,5 @@ using System.Resources;
|
|||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
[assembly: AssemblyVersion("2.3.0.2905")]
|
||||
[assembly: AssemblyVersion("2.3.0.2906")]
|
||||
[assembly: NeutralResourcesLanguageAttribute("en")]
|
||||
|
|
Loading…
Reference in a new issue