From 250c98a78cd541bd96a6839ba7339dac8bef772b Mon Sep 17 00:00:00 2001 From: Chris Teubert Date: Sat, 28 Mar 2015 15:54:06 -0700 Subject: [PATCH] Fixed minor bug in setConn.m Should be single quote around strings --- MATLAB/+XPlaneConnect/setConn.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MATLAB/+XPlaneConnect/setConn.m b/MATLAB/+XPlaneConnect/setConn.m index 5e4e081..01478c6 100644 --- a/MATLAB/+XPlaneConnect/setConn.m +++ b/MATLAB/+XPlaneConnect/setConn.m @@ -29,7 +29,7 @@ function status = setConn( recvPort, IP, port ) %% Handle Input % Optional parameters - if ~exist('IP','var'), IP = "127.0.0.1"; end + if ~exist('IP','var'), IP = '127.0.0.1'; end if ~exist('port','var'), port = 49009; end % Check format of input-TODO