Skip to content

Commit

Permalink
AUDIO: Fix MSVC warnings
Browse files Browse the repository at this point in the history
Fixes warning C4245: signed/unsigned mismatch
(seems in line with other decoders)
  • Loading branch information
SupSuper authored and dreammaster committed May 9, 2019
1 parent 369ba0c commit 8d17b6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion audio/decoders/adpcm_intern.h
Expand Up @@ -68,7 +68,7 @@ class ADPCMStream : public SeekableAudioStream {

virtual bool rewind();
virtual bool seek(const Timestamp &where) { return false; }
virtual Timestamp getLength() const { return -1; }
virtual Timestamp getLength() const { return Timestamp(); }

/**
* This table is used by some ADPCM variants (IMA and OKI) to adjust the
Expand Down

0 comments on commit 8d17b6c

Please sign in to comment.