From a009673856f0de13d5af47654d28e03e07f8f128 Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Mon, 31 Aug 2015 12:49:03 -0700 Subject: [PATCH] update stb_vorbis version --- stb_vorbis.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stb_vorbis.c b/stb_vorbis.c index 00c61c7..2dfb126 100644 --- a/stb_vorbis.c +++ b/stb_vorbis.c @@ -1,4 +1,4 @@ -// Ogg Vorbis audio decoder - v1.05 - public domain +// Ogg Vorbis audio decoder - v1.06 - public domain // http://nothings.org/stb_vorbis/ // // Written by Sean Barrett in 2007, last updated in 2014 @@ -35,6 +35,7 @@ // list them all because I was lax about updating for a long time, sorry.) // // Partial history: +// 1.06 - 2015/08/31 - full, correct support for seeking API (Dougall Johnson) // 1.05 - 2015/04/19 - don't define __forceinline if it's redundant // 1.04 - 2014/08/27 - fix missing const-correct case in API // 1.03 - 2014/08/07 - warning fixes