Skip to content

Commit 1db8c30

Browse files
committed
version info and doxygen tweaks
1 parent c7d1f49 commit 1db8c30

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"maintainer": true
1717
}
1818
],
19-
"version": "1.0.6",
19+
"version": "1.0.7",
2020
"frameworks": "arduino",
2121
"platforms": "espressif32",
2222
"headers": "fabgl.h"

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=FabGL
2-
version=1.0.6
2+
version=1.0.7
33
author=Fabrizio Di Vittorio <[email protected]>
44
maintainer=Fabrizio Di Vittorio <[email protected]>
55
sentence=ESP32 VGA, PAL/NTSC Color Composite, SSD1306 ILI9341 ST7789 Controller, PS/2 Mouse and Keyboard Controller, Graphics Library, Graphical User Interface (GUI), Sound Engine, Game Engine and ANSI/VT Terminal

src/dispdrivers/cvbs16controller.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ void IRAM_ATTR CVBS16Controller::drawScanlineX2(void * arg, uint16_t * dest, int
576576
for (int i = 0; i < width; ++i)
577577
*dest++ = 0x1900;
578578
} else
579-
//*/
579+
*/
580580

581581
// optimization warn: horizontal resolution must be a multiple of 8!
582582
for (int col = 0; col < width; col += 16) {

src/fabutils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ struct CoreUsage {
10631063
// VideoMode
10641064

10651065
/** \ingroup Enumerations
1066-
* @brief
1066+
* @brief Specifies a video mode
10671067
*/
10681068
enum class VideoMode {
10691069
None, /**< Video mode has not been set. */

0 commit comments

Comments
 (0)