Skip to content

Commit

Permalink
Update to game version 1.5.80
Browse files Browse the repository at this point in the history
  • Loading branch information
expired6978 committed Jun 25, 2019
1 parent e29537e commit b0c7595
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hudextension/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ bool SKSEPlugin_Query(const SKSEInterface * skse, PluginInfo * info)
_MESSAGE("loaded in editor, marking as incompatible");
return false;
}
else if(skse->runtimeVersion != RUNTIME_VERSION_1_5_73)
else if(skse->runtimeVersion != RUNTIME_VERSION_1_5_80)
{
_MESSAGE("unsupported runtime version %08X", skse->runtimeVersion);
return false;
Expand Down
4 changes: 2 additions & 2 deletions skee/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -584,9 +584,9 @@ bool SKSEPlugin_Query(const SKSEInterface * skse, PluginInfo * info)
_MESSAGE("loaded in editor, marking as incompatible");
return false;
}
else if (skse->runtimeVersion != RUNTIME_VERSION_1_5_73)
else if (skse->runtimeVersion != RUNTIME_VERSION_1_5_80)
{
UInt32 runtimeVersion = RUNTIME_VERSION_1_5_73;
UInt32 runtimeVersion = RUNTIME_VERSION_1_5_80;
char buf[512];
sprintf_s(buf, "RaceMenu Version Error:\nexpected game version %d.%d.%d.%d\nyour game version is %d.%d.%d.%d\nsome features may not work correctly.",
GET_EXE_VERSION_MAJOR(runtimeVersion),
Expand Down

0 comments on commit b0c7595

Please sign in to comment.