diff options
| author | engineer124 <47598039+engineer124@users.noreply.github.com> | 2023-11-27 21:02:28 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-27 21:02:28 +1100 |
| commit | 702f3cf44e7a6972801150a6d13d6fbb2283f230 (patch) | |
| tree | 759a31b35a4cb8876d93ebdf0bf13da16e8bc5b4 /src/boot | |
| parent | c04aaab6a1d0bdaf6071fadc649385fd3e71e774 (diff) | |
Document Actor Category Change (#1518)
* Actor Category Change
* cleanup
* comments
* adj comment
* revert small cleanup for libc64 PR
* adjust comments
Diffstat (limited to 'src/boot')
| -rw-r--r-- | src/boot/fault_drawer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/fault_drawer.c b/src/boot/fault_drawer.c index 6031ccaa6..78dc4fd38 100644 --- a/src/boot/fault_drawer.c +++ b/src/boot/fault_drawer.c @@ -216,7 +216,7 @@ void FaultDrawer_FillScreen() { } void* FaultDrawer_FormatStringFunc(void* arg, const char* str, size_t count) { - for (; count != 0; count--, str++) { + for (; count > 0; count--, str++) { if (sFaultDrawerInstance->escCode) { sFaultDrawerInstance->escCode = false; if (*str >= '1' && *str <= '9') { |
