mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-12 23:54:37 +00:00
SW: Fix -Wsizeof-pointer-memaccess
git-svn-id: https://svn.eduke32.com/eduke32@7535 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
d97f1ed79e
commit
54b7b27eb0
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ void ClearStartMost(void)
|
||||||
for (i = 0; i < xdim; i++)
|
for (i = 0; i < xdim; i++)
|
||||||
startdmost[i] = ydim;
|
startdmost[i] = ydim;
|
||||||
|
|
||||||
memset(startumost, 0, sizeof(startumost));
|
memset(startumost, 0, xdim * sizeof(int16_t));
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue