Skip to content

Commit

Permalink
Fixed a parameter error for Event .
Browse files Browse the repository at this point in the history
  • Loading branch information
oseamiya committed Dec 11, 2021
1 parent 96c3096 commit ffd2363
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -54,7 +54,7 @@ public void AdLoaded(){
}
@SimpleEvent
public void FailedToLoad(String error){
EventDispatcher.dispatchEvent(this , "FailedToLoad");
EventDispatcher.dispatchEvent(this , "FailedToLoad", error);
}
@SimpleEvent
public void FailedToShowFullScreenContent(String error){
Expand Down

0 comments on commit ffd2363

Please sign in to comment.