Fix variable initializtion warnings

This commit is contained in:
Alexander Babikov
2022-04-14 07:01:52 +05:00
parent 4e82d93729
commit 911821434e
4 changed files with 4 additions and 4 deletions

View File

@@ -1283,7 +1283,7 @@ void mach64_blit(uint32_t cpu_dat, int count, mach64_t *mach64)
case OP_RECT:
while (count)
{
uint32_t src_dat, dest_dat;
uint32_t src_dat = 0, dest_dat;
uint32_t host_dat = 0;
uint32_t old_dest_dat;
int mix = 0;