1
0
mirror of https://gitlab.com/rnger/amath synced 2025-10-05 02:19:17 +00:00

Fixed typo

This commit is contained in:
carsten
2015-03-22 15:59:34 +01:00
parent ccbf7e6872
commit cef0e85a98
3 changed files with 6 additions and 7 deletions

View File

@ -127,7 +127,7 @@
// -----------------------------------------------------
#define ARCH ACPU AFPU ASYSNAME ATEST
#define ATITLE "amath version 1.5.5"
#define ATITLE "amath version 1.5.6"
#define ACOPYRIGHT "(c) 2015 Carsten Sonne Larsen"
#define ASTARTMSG ATITLE SPACE ARCH SPACE ACOPYRIGHT
@ -179,7 +179,7 @@
NORMALTEXT COLOR02 ITALICS \
"Type help to show info." NEWLINE \
NORMALTEXT
#define PROMT NORMALTEXT "-> "
#define PROMPT NORMALTEXT "> "
#define TXTLISTDIRHEADER \
"Type Name" NEWLINE \

View File

@ -46,6 +46,5 @@ void ConsoleBase::StartMessage()
void ConsoleBase::Promt()
{
WriteString(PROMT);
WriteString(PROMPT);
}

View File

@ -254,11 +254,11 @@ void AnsiConoleEngine::ShowLast()
out->Empty();
out->EnsureSize(
StrLen(DELETELINE) +
StrLen(PROMT) +
StrLen(PROMPT) +
StrLen(lines[showline]) + 1);
out->Append(DELETELINE);
out->Append(PROMT);
out->Append(PROMPT);
out->Append(lines[showline]);
linebuf->Empty();
@ -285,7 +285,7 @@ void AnsiConoleEngine::ShowNext()
out->Empty();
out->Append(DELETELINE);
out->Append(PROMT);
out->Append(PROMPT);
if (showline > curline) {
out->EnsureGrowth(StrLen(editline) + 1);