X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=fceu.git;a=blobdiff_plain;f=memory.c;h=0194a83f7dca5020881cc00008fdbbbf49aaf02d;hp=de10c11fb3b88f6ce75882b8db9dadeabddba03c;hb=refs%2Fheads%2Fmaster;hpb=92764e6252a3691033d6044b466bf716c96b62d5 diff --git a/memory.c b/memory.c index de10c11..0194a83 100644 --- a/memory.c +++ b/memory.c @@ -63,12 +63,12 @@ void FCEU_gfree(void *ptr) void FASTAPASS(3) FCEU_memmove(void *d, void *s, uint32 l) { uint32 x; - int t; + long t; /* Type really doesn't matter. */ - t=(int)d; - t|=(int)s; - t|=(int)l; + t=(long)d; + t|=(long)s; + t|=(long)l; if(t&3) // Not 4-byte aligned and/or length is not a multiple of 4. {