summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/AVIDump.cpp
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2012-02-24 14:25:02 -0600
committerJordan Woyak <jordan.woyak@gmail.com>2012-02-24 14:25:02 -0600
commitf92d1e1e931db66d10db4cb2377bcb794dc898ee (patch)
tree64a40b3b6083ccd817c7554d65ec7cd4efc305cb /Source/Core/VideoCommon/Src/AVIDump.cpp
parent8a8dc77ef19446f97d210f0602aaa218144adf0e (diff)
fix some clang compilation errors
Diffstat (limited to 'Source/Core/VideoCommon/Src/AVIDump.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/AVIDump.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/AVIDump.cpp b/Source/Core/VideoCommon/Src/AVIDump.cpp
index 469e00d9f5..670693690b 100644
--- a/Source/Core/VideoCommon/Src/AVIDump.cpp
+++ b/Source/Core/VideoCommon/Src/AVIDump.cpp
@@ -263,7 +263,7 @@ bool AVIDump::CreateFile()
s_Stream->codec->bit_rate = 400000;
s_Stream->codec->width = s_width;
s_Stream->codec->height = s_height;
- s_Stream->codec->time_base = (AVRational){1, VideoInterface::TargetRefreshRate};
+ s_Stream->codec->time_base = (AVRational){1, static_cast<int>(VideoInterface::TargetRefreshRate)};
s_Stream->codec->gop_size = 12;
s_Stream->codec->pix_fmt = g_Config.bUseFFV1 ? PIX_FMT_BGRA : PIX_FMT_YUV420P;