fix up is_linux_console() for non-linux builds

pull/1838/head
nick black 3 years ago
parent a16cd3be31
commit e287187108
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -412,9 +412,10 @@ bool is_linux_console(int fd, unsigned no_font_changes, bool* quadrants){
return true;
}
#else
bool is_linux_console(int fd, unsigned no_font_changes){
bool is_linux_console(int fd, unsigned no_font_changes, bool* quadrants){
(void)nc;
(void)no_font_changes;
(void)quadrants;
return false;
}
#endif

Loading…
Cancel
Save