mirror of
https://github.com/lupyuen/pinephone-nuttx.git
synced 2025-01-12 20:58:34 +08:00
Clean up
This commit is contained in:
parent
7654b9639d
commit
a86295c56b
1 changed files with 2 additions and 1 deletions
|
@ -133,7 +133,8 @@ int render_graphics(void)
|
|||
DEBUGASSERT(ret == OK);
|
||||
|
||||
// Init the 2 Overlay UI Channels
|
||||
for (int i = 0; i < sizeof(overlayInfo) / sizeof(overlayInfo[0]); i++)
|
||||
int i;
|
||||
for (i = 0; i < sizeof(overlayInfo) / sizeof(overlayInfo[0]); i++)
|
||||
{
|
||||
const struct fb_overlayinfo_s *ov = &overlayInfo[i];
|
||||
ret = a64_de_ui_channel_init(
|
||||
|
|
Loading…
Reference in a new issue