Changes in uspace/srv/hid/output/port/ega.c [9b2e20c:4122410] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/output/port/ega.c
r9b2e20c r4122410 1 1 /* 2 * Copyright (c) 2021 Jiri Svoboda3 2 * Copyright (c) 2011 Martin Decky 4 3 * All rights reserved. … … 32 31 */ 33 32 34 #include <codepage/cp437.h>35 33 #include <errno.h> 36 34 #include <sysinfo.h> … … 108 106 { 109 107 uint8_t glyph; 110 errno_t rc; 111 112 rc = cp437_encode(field->ch, &glyph);113 if (rc != EOK)108 109 if (ascii_check(field->ch)) 110 glyph = field->ch; 111 else 114 112 glyph = '?'; 115 113
Note:
See TracChangeset
for help on using the changeset viewer.