1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-27 00:29:31 +00:00

Fixed a string in the help screen

git-svn-id: svn://svn.cc65.org/cc65/trunk@1446 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-10-06 12:03:24 +00:00
parent 6047165325
commit b0559a4b19

View File

@ -158,23 +158,23 @@ static TextDesc RegText [] = {
{ 1, 7, "HI" }
};
static TextDesc HelpText [] = {
{ 1, 0, "F1, ? Help" },
{ 1, 1, "F2, t Toggle breakpoint" },
{ 1, 2, "F3, u Run until subroutine returns" },
{ 1, 3, "F4, h Run to cursor" },
{ 1, 4, "F7, space Step into" },
{ 1, 5, "F8, enter Step over" },
{ 1, 6, "1-5 Select active window" },
{ 1, 7, "+ Page down" },
{ 1, 8, "- Page up" },
{ 1, 9, "Cursor Move up/down" },
{ 1, 10, "c Continue" },
{ 1, 11, "f Follow instruction" },
{ 1, 12, "o Goto origin" },
{ 1, 13, "p Use as new PC value" },
{ 1, 14, "q Quit" },
{ 1, 15, "r Redraw screen" },
{ 1, 16, "s Skip next instruction" },
{ 1, 0, "F1, ? Help" },
{ 1, 1, "F2, t Toggle breakpoint" },
{ 1, 2, "F3, u Run until subroutine returns" },
{ 1, 3, "F4, h Run to cursor" },
{ 1, 4, "F7, space Step into" },
{ 1, 5, "F8, enter Step over" },
{ 1, 6, "1-5 Select active window" },
{ 1, 7, "+ Page down" },
{ 1, 8, "- Page up" },
{ 1, 9, "Cursor Move up/down" },
{ 1, 10, "c Continue" },
{ 1, 11, "f Follow instruction" },
{ 1, 12, "o Goto origin" },
{ 1, 13, "p Use as new PC value" },
{ 1, 14, "q Quit" },
{ 1, 15, "r Redraw screen" },
{ 1, 16, "s Skip next instruction" },
};