Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Robinson committed Sep 28, 2014
2 parents afe6a02 + 8b271ba commit e2aea7c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
Binary file modified Components/LiveSplit.Skyrim.dll
Binary file not shown.
10 changes: 10 additions & 0 deletions Components/update.LiveSplit.Skyrim.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
<updates>
<update version="1.4.1">
<files>
<file path="Components/LiveSplit.Skyrim.dll" status="changed"/>
</files>
<changelog>
<change>
Fixed incorrect Helgen autosplit.
</change>
</changelog>
</update>
<update version="1.4.0">
<files>
<file path="Components/LiveSplit.Skyrim.dll" status="changed"/>
Expand Down
2 changes: 1 addition & 1 deletion GameMemory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ void MemoryReadThread()
// }, null);

// if loadscreen starts while leaving helgen
if (locationID == (int)Locations.HelgenKeep01)
if (locationID == (int)Locations.HelgenKeep01 && world_X == -2 && world_Y == -5)
{
// Helgen split
Trace.WriteLine(String.Format("[NoLoads] Helgen Split - {0}", frameCounter));
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
// 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.4.0.0")]
[assembly: AssemblyFileVersion("1.4.0.0")]
[assembly: AssemblyVersion("1.4.1.0")]
[assembly: AssemblyFileVersion("1.4.1.0")]

[assembly: ComponentFactory(typeof(SkyrimFactory))]

0 comments on commit e2aea7c

Please sign in to comment.