diff options
Diffstat (limited to 'src/nv_cursor.c')
-rw-r--r-- | src/nv_cursor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nv_cursor.c b/src/nv_cursor.c index abaaab2..73e3fc6 100644 --- a/src/nv_cursor.c +++ b/src/nv_cursor.c @@ -135,11 +135,11 @@ TransformCursor (NVPtr pNv) /* convert to color cursor */ if(pNv->alphaCursor) { dwords = 64 * 64; - if(!(tmp = xcalloc(dwords * 4))) return; + if(!(tmp = Xcalloc(dwords * 4))) return; ConvertCursor8888(pNv, pNv->curImage, tmp); } else { dwords = (32 * 32) >> 1; - if(!(tmp = xcalloc(dwords * 4))) return; + if(!(tmp = Xcalloc(dwords * 4))) return; ConvertCursor1555(pNv, pNv->curImage, (CARD16*)tmp); } |