From 2e9a51e7dccf761c0aaf92e5d1e07351ca80608e Mon Sep 17 00:00:00 2001 From: Chris Teubert Date: Tue, 25 Aug 2015 11:18:43 -0700 Subject: [PATCH] Bug-fix accidentally limited monitor loop Fixing a mistake from #9187c82 --- MATLAB/MonitorExample/MonitorExample.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MATLAB/MonitorExample/MonitorExample.m b/MATLAB/MonitorExample/MonitorExample.m index aa9ac1f..ffbdc14 100644 --- a/MATLAB/MonitorExample/MonitorExample.m +++ b/MATLAB/MonitorExample/MonitorExample.m @@ -8,7 +8,7 @@ addpath('../') import XPlaneConnect.* Socket = openUDP(); -for i=1:100 +while 1 posi = getPOSI(0, Socket); ctrl = getCTRL(0, Socket);