Windows fixes

This commit is contained in:
Jack Andersen 2016-12-10 15:53:11 -10:00
parent bcfe1a5d33
commit 512a8a122d
1 changed files with 1 additions and 1 deletions

View File

@ -865,7 +865,7 @@ bool DiscBuilderWii::buildFromDirectory(const SystemChar* dirIn, const SystemCha
/* Assemble image */ /* Assemble image */
filledSz = pb.buildFromDirectory(dirIn, dolIn, apploaderIn, partHeadIn); filledSz = pb.buildFromDirectory(dirIn, dolIn, apploaderIn, partHeadIn);
if (filledSz >= m_discCapacity) if (filledSz >= uint64_t(m_discCapacity))
{ {
LogModule.report(logvisor::Fatal, "data partition exceeds disc capacity"); LogModule.report(logvisor::Fatal, "data partition exceeds disc capacity");
return false; return false;