Address some compiler warnings about implicit integer conversions.

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2016-10-18 22:32:35 -03:00
parent 2e016810c9
commit 0653ec9564
23 changed files with 44 additions and 43 deletions
+3 -2
View File
@@ -23,6 +23,7 @@
// LOVE
#include "common/Data.h"
#include "common/int.h"
#include "Decoder.h"
// vorbis
@@ -41,8 +42,8 @@ namespace lullaby
struct SOggFile
{
const char *dataPtr; // Pointer to the data in memory
int dataSize; // Size of the data
int dataRead; // How much we've read so far
int64 dataSize; // Size of the data
int64 dataRead; // How much we've read so far
};
class VorbisDecoder : public Decoder