Fix some compilation warnings

This commit is contained in:
Dominic Chen 2015-08-02 16:39:59 -07:00
parent 869c5d7a8c
commit 09714f86c3
2 changed files with 3 additions and 3 deletions

View File

@ -1472,7 +1472,7 @@ void CFrame::ParseHotkeys()
VertexShaderManager::ResetView(); VertexShaderManager::ResetView();
// Savestates // Savestates
for (unsigned int i = 0; i < State::NUM_STATES; i++) for (u32 i = 0; i < State::NUM_STATES; i++)
{ {
if (IsHotkey(HK_LOAD_STATE_SLOT_1 + i)) if (IsHotkey(HK_LOAD_STATE_SLOT_1 + i))
State::Load(1 + i); State::Load(1 + i);

View File

@ -480,12 +480,12 @@ void AVIDump::AddFrame(const u8* data, int width, int height)
while (!error && got_packet) while (!error && got_packet)
{ {
// Write the compressed frame in the media file. // Write the compressed frame in the media file.
if (pkt.pts != AV_NOPTS_VALUE) if (static_cast<u64>(pkt.pts) != AV_NOPTS_VALUE)
{ {
pkt.pts = av_rescale_q(pkt.pts, pkt.pts = av_rescale_q(pkt.pts,
s_stream->codec->time_base, s_stream->time_base); s_stream->codec->time_base, s_stream->time_base);
} }
if (pkt.dts != AV_NOPTS_VALUE) if (static_cast<u64>(pkt.dts) != AV_NOPTS_VALUE)
{ {
pkt.dts = av_rescale_q(pkt.dts, pkt.dts = av_rescale_q(pkt.dts,
s_stream->codec->time_base, s_stream->time_base); s_stream->codec->time_base, s_stream->time_base);