Skip to content

Commit

Permalink
Fixed TD issue
Browse files Browse the repository at this point in the history
  • Loading branch information
medcelerate committed Jul 16, 2024
1 parent 6ceda23 commit c4e9bd7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions FFGLTouchEngine/src/TouchEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1098,6 +1098,10 @@ void FFGLTouchEngine::eventCallback(TEEvent event, TEResult result, int64_t star
return;
}

if (!errors) {
return;
}

for (int i = 0; i < errors->count; i++)
{
std::string error =
Expand Down
4 changes: 4 additions & 0 deletions FFGLTouchEngineFX/src/TouchEngineFX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1319,6 +1319,10 @@ void FFGLTouchEngineFX::eventCallback(TEEvent event, TEResult result, int64_t st
return;
}

if (!errors) {
return;
}

for (int i = 0; i < errors->count; i++)
{
std::string error =
Expand Down

0 comments on commit c4e9bd7

Please sign in to comment.