Skip to content

Commit

Permalink
Fixed compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
tschrapel committed Mar 20, 2022
1 parent 9752c3e commit 6523c8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vrEmuLcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ VR_LCD_EMU_DLLEXPORT void vrEmuLcdUpdatePixels(VrEmuLcd* lcd)
// is the display on?
if (!displayOn)
{
*pixel = -1;
*pixel = (uint8_t)-1;
continue;
}

Expand Down Expand Up @@ -841,7 +841,7 @@ VR_LCD_EMU_DLLEXPORT void vrEmuLcdUpdatePixels(VrEmuLcd* lcd)
// is the display on?
if (!displayOn)
{
*pixel = -1;
*pixel = (uint8_t)-1;
continue;
}

Expand Down

0 comments on commit 6523c8d

Please sign in to comment.