Skip to content

Commit

Permalink
COD4 search string fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sheilan102 committed May 30, 2019
1 parent dd866c7 commit 5ac811a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Husky/Husky/Games/ModernWarfare.cs
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ public static void ExportBSPData(ProcessReader reader, long assetPoolsAddress, l

// Loop through images, and append each to the search string (for Wraith/Greyhound)
foreach (string imageName in imageNames)
searchString += String.Format("{0},", Path.GetFileNameWithoutExtension(imageName));
searchString += String.Format("{0},", imageName);

// Get dynamic models from Map Entities
List<IDictionary> MapEntities = ParseMapEnts(mapEnt);
Expand Down
4 changes: 2 additions & 2 deletions src/Husky/Husky/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.3.5")]
[assembly: AssemblyFileVersion("1.0.3.5")]
[assembly: AssemblyVersion("1.0.3.6")]
[assembly: AssemblyFileVersion("1.0.3.6")]
4 changes: 2 additions & 2 deletions src/Husky/HuskyUI/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.3.5")]
[assembly: AssemblyFileVersion("1.0.3.5")]
[assembly: AssemblyVersion("1.0.3.6")]
[assembly: AssemblyFileVersion("1.0.3.6")]

0 comments on commit 5ac811a

Please sign in to comment.