Skip to content

Commit

Permalink
AGS.Native: fix after recent change to InteractionEvents
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Oct 29, 2024
1 parent 881d319 commit 17c2430
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/AGS.Native/agsnative.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3140,7 +3140,7 @@ void CopyInteractions(AGS::Types::Interactions ^destination, const AGS::Common::
// TODO: add a warning? if warning list would be passed in here
for (size_t i = 0; i < evt_count; i++)
{
destination->ScriptFunctionNames[i] = TextHelper::ConvertASCII(source->Events[i]);
destination->ScriptFunctionNames[i] = TextHelper::ConvertASCII(source->Events[i].FunctionName);
}
}

Expand Down

0 comments on commit 17c2430

Please sign in to comment.