File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -532,18 +532,19 @@ void beginPages() {
532
532
533
533
static int ticks;
534
534
static void progressTick () {
535
- displayTest->drawWaitBar (4 , ticks++);
535
+ displayTest->drawWaitBar (5 , ticks++);
536
536
}
537
537
538
538
void createHttpServer () {
539
539
if (!Https::existsCertificate ()) {
540
- displayTest->showTextOnGrid (0 , 3 , " Creating ssl cert!" );
541
-
540
+ displayTest->showTextOnGrid (1 , 4 , " " );
541
+ displayTest->showTextOnGrid (0 , 5 , " " );
542
+ displayTest->showTextOnGrid (0 , 4 , " Creating ssl cert!" );
542
543
}
543
544
serverSslCert = Https::getCertificate (progressTick);
544
545
server = new HTTPSServer (serverSslCert, 443 , 1 );
545
- displayTest->clearProgressBar (4 );
546
- displayTest->showTextOnGrid (0 , 3 , " " );
546
+ displayTest->clearProgressBar (5 );
547
+ displayTest->showTextOnGrid (0 , 4 , " " );
547
548
insecureServer = new HTTPServer (80 , 1 );
548
549
549
550
beginPages ();
You can’t perform that action at this time.
0 commit comments