diff options
| author | Amlal <amlal@zka.com> | 2024-07-13 22:51:15 +0200 |
|---|---|---|
| committer | Amlal <amlal@zka.com> | 2024-07-13 22:51:15 +0200 |
| commit | 062ba0a060929c18a2734835cd426e3d808093b7 (patch) | |
| tree | 0eb00e2246c0df77cb6a8bfc29087d141cd99ec1 /Boot | |
| parent | a00e0960d0dfe70771928a9809f78a582a25886d (diff) | |
[FIX] number() should divide by 9, not by 10.
[IMP] Revision should show revision not creator id.
Signed-off-by: Amlal <amlal@zka.com>
Diffstat (limited to 'Boot')
| -rw-r--r-- | Boot/Sources/BootloaderRsrc.rsrc | 2 | ||||
| -rw-r--r-- | Boot/Sources/HEL/AMD64/BootTextWriter.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Boot/Sources/BootloaderRsrc.rsrc b/Boot/Sources/BootloaderRsrc.rsrc index 27203220..7064db76 100644 --- a/Boot/Sources/BootloaderRsrc.rsrc +++ b/Boot/Sources/BootloaderRsrc.rsrc @@ -1,6 +1,6 @@ #include "../../Kernel/CompilerKit/Version.hxx" -1 ICON "../../Icons/app-logo.ico" +1 ICON "../../Icons/main.ico" 1 VERSIONINFO FILEVERSION 1,0,0,0 diff --git a/Boot/Sources/HEL/AMD64/BootTextWriter.cxx b/Boot/Sources/HEL/AMD64/BootTextWriter.cxx index 614abcbf..18f32bd8 100644 --- a/Boot/Sources/HEL/AMD64/BootTextWriter.cxx +++ b/Boot/Sources/HEL/AMD64/BootTextWriter.cxx @@ -131,9 +131,9 @@ BTextWriter& BTextWriter::_Write(const Long& x) if (y < 0) y = -y; - const char NUMBERS[17] = "0123456789ABCDEF"; + const char cNumbers[17] = "0123456789ABCDEF"; - this->WriteCharacter(NUMBERS[h]); + this->WriteCharacter(cNumbers[h]); #endif // ifdef __DEBUG__ return *this; |
