Fix memory leak with shader cache;

This commit is contained in:
bjorn 2022-08-22 20:18:34 -07:00
parent c524d2c4fc
commit f914b6fcf1
1 changed files with 2 additions and 0 deletions

View File

@ -669,6 +669,8 @@ static int l_lovrGraphicsInit(lua_State* L) {
}
}
free(config.cacheData);
return 0;
}