소스 검색

fix for js version

Simon Van Mierlo 8 년 전
부모
커밋
5b877d6be6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/javascript_sccd_runtime/statecharts_core.js

+ 1 - 1
src/javascript_sccd_runtime/statecharts_core.js

@@ -511,7 +511,7 @@ ControllerBase.prototype.addOutputPort = function(port_name) {
 
 ControllerBase.prototype.broadcast = function(new_event, time_offset) {
     if (time_offset === undefined) time_offset = 0
-	this.object_manager.broadcast(new_event, time_offset);
+	this.object_manager.broadcast(undefined, new_event, time_offset);
 };
 
 ControllerBase.prototype.start = function() {