correct some inlining

This commit is contained in:
philippe44
2020-02-22 19:35:16 -08:00
parent a3d0b67670
commit 94fecbdd47
5 changed files with 40 additions and 53 deletions

View File

@@ -130,7 +130,7 @@ static bool Init( struct GDS_Device* Device ) {
static const struct GDS_Device SH1106 = {
.DisplayOn = DisplayOn, .DisplayOff = DisplayOff, .SetContrast = SetContrast,
.SetVFlip = SetVFlip, .SetHFlip = SetHFlip,
.DrawPixel = GDS_DrawPixel, .DrawPixelFast = GDS_DrawPixelFast,
.DrawPixelFast = GDS_DrawPixelFast,
.Update = Update, .Init = Init,
};