diff include/NetworkSend.h @ 113:7dfae7b7ab12 scope-refactoring

Removed unused member timestamp
author Giulio Moro <giuliomoro@yahoo.it>
date Wed, 19 Aug 2015 23:03:52 +0100
parents 9928b6366227
children 8341df5e404b
line wrap: on
line diff
--- a/include/NetworkSend.h	Wed Aug 19 22:56:12 2015 +0100
+++ b/include/NetworkSend.h	Wed Aug 19 23:03:52 2015 +0100
@@ -11,11 +11,10 @@
 #define NETWORK_AUDIO_BUFFER_SIZE 302
 
 struct NetworkBuffer{
-	int timestamp;
 	int channelNumber;
 	int activeBuffer;
 	int index;
-	float buffers[2][NETWORK_AUDIO_BUFFER_SIZE]; 
+	float buffers[2][NETWORK_AUDIO_BUFFER_SIZE];
 	bool doneOnTime;
 	bool readyToBeSent;
 	static const int headerLength=2;