diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-17 09:19:52 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-17 09:19:52 +0100 |
| commit | 0d931fe17b32cc5082f1180138dbb7bd6416dd14 (patch) | |
| tree | 2c5b2f6176423cf53d419fd2e6d5131d2bbb224f /dev/boot/BootKit | |
| parent | bfce4d5673fc469395e0d438daa7f6d839834abc (diff) | |
tools: feat: new syntax for function.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/boot/BootKit')
| -rw-r--r-- | dev/boot/BootKit/Qr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/boot/BootKit/Qr.h b/dev/boot/BootKit/Qr.h index 2dcfc5fe..f537aa5e 100644 --- a/dev/boot/BootKit/Qr.h +++ b/dev/boot/BootKit/Qr.h @@ -306,7 +306,7 @@ template <int V> bool Qr<V>::draw(int whereX, int whereY) noexcept { if (!this->status) return false; // it may be invalid. - fb_init(); + cg_init(); for (int y = 0; y < (this->side_size()); ++y) { for (int x = 0; x < (this->side_size()); ++x) { @@ -315,7 +315,7 @@ bool Qr<V>::draw(int whereX, int whereY) noexcept { } } - fb_clear(); + cg_clear(); return false; } |
