[TIC80] Don't read uninitalized local variables in lua_ttri

Fixes #4190
This commit is contained in:
CasualPokePlayer 2025-01-16 09:46:57 -08:00
parent ec297bf215
commit 87a740d09a
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -539,7 +539,7 @@ static s32 lua_ttri(lua_State* lua)
}
}
float z[3];
float z[3] = {0, 0, 0};
bool depth = false;
if(top == 17)