mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-02 17:31:35 +00:00
LaunchAPPLServer: "Listening on TCP" message
This commit is contained in:
parent
ce9deca9db
commit
3bb5ce4e74
@ -293,7 +293,8 @@ public:
|
||||
|
||||
void onReset()
|
||||
{
|
||||
statusDisplay->SetStatus(gPrefs.port == Port::printerPort ? AppStatus::readyPrinter : AppStatus::readyModem, 0, 0);
|
||||
AppStatus readyState{ (int)AppStatus::readyModem + (int)gPrefs.port - (int)Port::modemPort };
|
||||
statusDisplay->SetStatus(readyState, 0, 0);
|
||||
state = State::command;
|
||||
}
|
||||
|
||||
|
@ -113,6 +113,8 @@ resource 'STR#' (128, purgeable) {
|
||||
{
|
||||
"Listening on Modem Port...";
|
||||
"Listening on Printer Port...";
|
||||
"Listening on TCP port 1984 (MacTCP)...";
|
||||
"Listening on TCP port 1984 (OpenTransport)...";
|
||||
"Downloading Application...";
|
||||
"Downloading Upgrade...";
|
||||
"Running Application...";
|
||||
|
@ -9,6 +9,8 @@ enum class AppStatus
|
||||
empty = 0,
|
||||
readyModem = 1,
|
||||
readyPrinter,
|
||||
readyMacTCP,
|
||||
readyOpenTpt,
|
||||
downloading,
|
||||
upgrading,
|
||||
running,
|
||||
|
Loading…
Reference in New Issue
Block a user