From cc2048a497df72d680fd86498c9f5a0d60ca4161 Mon Sep 17 00:00:00 2001
From: Thibaut <thibaut.monseigne@inria.fr>
Date: Wed, 15 Apr 2020 14:47:27 +0200
Subject: [PATCH] :bug: Outlet

---
 OV/OVOutlets.cs                  | 2 +-
 OV/Template/StimulationOutlet.cs | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/OV/OVOutlets.cs b/OV/OVOutlets.cs
index 0531d0e..15f092a 100644
--- a/OV/OVOutlets.cs
+++ b/OV/OVOutlets.cs
@@ -43,7 +43,7 @@ namespace LSL4Unity.OV
 			{
 				case StreamTypes.Double: return liblsl.channel_format_t.cf_double64;
 				case StreamTypes.Float:  return liblsl.channel_format_t.cf_float32;
-				case StreamTypes.Int:    return liblsl.channel_format_t.cf_int64;
+				case StreamTypes.Int:    return liblsl.channel_format_t.cf_int32;
 				default:                 throw new ArgumentOutOfRangeException();
 			}
 		}
diff --git a/OV/Template/StimulationOutlet.cs b/OV/Template/StimulationOutlet.cs
index 463dcd3..2ebb325 100644
--- a/OV/Template/StimulationOutlet.cs
+++ b/OV/Template/StimulationOutlet.cs
@@ -6,7 +6,7 @@ namespace LSL4Unity.OV.Template
 	/// <seealso cref="OVIntOutlet" />
 	public class StimulationOutlet : OVIntOutlet
 	{
-		/// <inheritdoc cref="OVIntInlet.Process"/>
+		/// <inheritdoc cref="OVIntOutlet.Process"/>
 		protected override void Process(int[] input) { samples = input; }
 	}
 }
-- 
GitLab