Skip to content

Commit 3510be7

Browse files
authored
Use SPRITEBATCH_MEMSET instead of CUTE_MEMSET (#269)
Co-authored-by: Karim Ahmed <[email protected]>
1 parent 10151bc commit 3510be7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cute_spritebatch.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1123,7 +1123,7 @@ void spritebatch_prefetch(spritebatch_t* sb, SPRITEBATCH_U64 image_id, int w, in
11231123
spritebatch_sprite_t spritebatch_fetch(spritebatch_t* sb, SPRITEBATCH_U64 image_id, int w, int h)
11241124
{
11251125
spritebatch_sprite_t s;
1126-
CUTE_MEMSET(&s, 0, sizeof(s));
1126+
SPRITEBATCH_MEMSET(&s, 0, sizeof(s));
11271127

11281128
s.w = w;
11291129
s.h = h;

0 commit comments

Comments
 (0)