summaryrefslogtreecommitdiffhomepage
path: root/dev/boot/BootKit
diff options
context:
space:
mode:
Diffstat (limited to 'dev/boot/BootKit')
-rw-r--r--dev/boot/BootKit/Qr.h4
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;
}