Fix CXX_BUILD.

This commit is contained in:
Themaister 2012-09-09 23:37:12 +02:00
parent 8981dd6c6b
commit 4ff087cc36
4 changed files with 4 additions and 2 deletions

View File

@ -302,6 +302,7 @@ clean:
rm -f conf/*.o
rm -f gfx/*.o
rm -f gfx/fonts/*.o
rm -f gfx/math/*.o
rm -f gfx/context/*.o
rm -f gfx/py_state/*.o
rm -f gfx/scaler/*.o

View File

@ -224,6 +224,7 @@ clean:
rm -f gfx/scaler/*.o
rm -f gfx/*.o
rm -f gfx/context/*.o
rm -f gfx/math/*.o
rm -f gfx/fonts/*.o
rm -f gfx/py_state/*.o
rm -f record/*.o

View File

@ -139,7 +139,7 @@ static inline void store_bgr24_sse2(void *output, __m128i a, __m128i b, __m128i
__m128i c4 = _mm_slli_si128(_mm_and_si128(d, mask_2), 2);
__m128i c5 = _mm_slli_si128(_mm_and_si128(d, mask_3), 1);
__m128i *out = output;
__m128i *out = (__m128i*)output;
_mm_storeu_si128(out + 0,
_mm_or_si128(a0, _mm_or_si128(a1, _mm_or_si128(a2, _mm_or_si128(a3, _mm_or_si128(a4, a5))))));

View File

@ -601,7 +601,7 @@ static bool ffemu_push_video_thread(ffemu_t *handle, const struct ffemu_video_da
{
if (!data->is_dupe)
{
if (data->width != handle->video.scaler.in_width || data->height != handle->video.scaler.in_height)
if ((int)data->width != handle->video.scaler.in_width || (int)data->height != handle->video.scaler.in_height)
{
handle->video.scaler.in_width = data->width;
handle->video.scaler.in_height = data->height;