Fixed minor datatype difference in Blargg filtering.

This commit is contained in:
Stephen Anthony 2017-06-11 18:48:15 -02:30
parent 4a2e4b666c
commit 861778f627
1 changed files with 4 additions and 4 deletions

View File

@ -108,15 +108,15 @@ class NTSCFilter
// output buffer // output buffer
// In the current implementation, the source pitch is always the // In the current implementation, the source pitch is always the
// same as the actual width // same as the actual width
inline void blit_single(uInt8* src_buf, int src_width, int src_height, inline void blit_single(uInt8* src_buf, uInt32 src_width, uInt32 src_height,
uInt32* dest_buf, int dest_pitch) uInt32* dest_buf, uInt32 dest_pitch)
{ {
atari_ntsc_blit_single(&myFilter, src_buf, src_width, src_height, atari_ntsc_blit_single(&myFilter, src_buf, src_width, src_height,
dest_buf, dest_pitch); dest_buf, dest_pitch);
} }
inline void blit_double(uInt8* src_buf, uInt8* src_back_buf, inline void blit_double(uInt8* src_buf, uInt8* src_back_buf,
int src_width, int src_height, uInt32 src_width, uInt32 src_height,
uInt32* dest_buf, int dest_pitch) uInt32* dest_buf, uInt32 dest_pitch)
{ {
atari_ntsc_blit_double(&myFilter, src_buf, src_back_buf, src_width, atari_ntsc_blit_double(&myFilter, src_buf, src_back_buf, src_width,
src_height, dest_buf, dest_pitch); src_height, dest_buf, dest_pitch);