Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions TombRaider.asl
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
state("TombRaider", "[Epic Games] 838.0")
state("TombRaider", "[Steam] 0.0")
{
bool FMV : "binkw32.dll", 0x2830C;
int ingameCutscene : 0x20C97C0;
bool isLoading : 0x1CF7FE0;
}

state("TombRaider", "[Epic Games] 0.0")
{
bool FMV : "binkw32.dll", 0x2830C;
int ingameCutscene : 0x20C7DBC;
Expand All @@ -22,8 +29,11 @@ init
{
switch(modules.FirstOrDefault(r => r.ModuleName == "TombRaider.exe").ModuleMemorySize)
{
case 38543360:
version = "[Steam] 0.0";
break;
case 38535168:
version = "[Epic Games] 838.0";
version = "[Epic Games] 0.0";
break;
case 38739968:
version = "[Steam] 743.0";
Expand Down