Procházet zdrojové kódy

include size to SoundHeader

mikymod před 12 roky
rodič
revize
c095144ad4
1 změnil soubory, kde provedl 3 přidání a 2 odebrání
  1. 3 2
      tools/core/formats/SoundFormat.h

+ 3 - 2
tools/core/formats/SoundFormat.h

@@ -36,8 +36,9 @@ const uint32_t SOUND_VERSION = 1;
 struct SoundHeader
 {
 	uint32_t	version;	// Sound file version
-	int32_t		channels;
-	int32_t 	bits_per_sample;
+	uint32_t	size;
+	uint32_t	channels;
+	uint32_t 	bits_per_sample;
 };
 
 }