aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/smpeg2/003-fix-double-ptr-to-int-comparison.patch
blob: 31128a848104fd00e0663f7fde3e1d69dac9f712 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/audio/mpegtoraw.cpp b/audio/mpegtoraw.cpp
index 493c870..a4eabdc 100644
--- a/audio/mpegtoraw.cpp
+++ b/audio/mpegtoraw.cpp
@@ -448,7 +448,7 @@ int Play_MPEGaudio(MPEGaudio *audio, Uint8 *stream, int len)
 	if (audio->timestamp[0] != -1){
 	    double timeshift = audio->Time() - audio->timestamp[0];
 	    double correction = 0;
-	    assert(audio->timestamp >= 0);
+	    assert(audio->timestamp[0] >= 0);
 	    if (fabs(timeshift) > 1.0){
 	        correction = -timeshift;
 #ifdef DEBUG_TIMESTAMP_SYNC