- fbcopy_raw now works if memcpy() is not used

(but it seems better to use memcpy since GCC has inline equivalent)
This commit is contained in:
gbeauche 2000-09-23 08:39:38 +00:00
parent 8aab66f024
commit b251b89073

View File

@ -88,7 +88,6 @@ static void do_fbcopy_raw(uint8 * dest, const uint8 * source, uint32 length)
memcpy(dest, source, length); memcpy(dest, source, length);
} }
#else #else
#error "incomplete"
#define FB_BLIT_1(dst, src) (dst = (src)) #define FB_BLIT_1(dst, src) (dst = (src))
#define FB_BLIT_2(dst, src) (dst = (src)) #define FB_BLIT_2(dst, src) (dst = (src))
#define FB_DEPTH 0 #define FB_DEPTH 0