src/main.cpp

changeset 49
c146d19101a3
parent 48
fc55f6eaa8bc
child 52
098124b730eb
--- a/src/main.cpp	Sat Nov 07 19:24:11 2020 +0100
+++ b/src/main.cpp	Mon Nov 09 23:05:24 2020 +0100
@@ -270,9 +270,9 @@
 	dsp->cls();
     printf("Initiate startup sequence\n");
 	if (last_key.keyevent == KEY_PRESSED)
-		hp->startup(kp_mapping[last_key.row][last_key.col]);
+		hp->send_startup_seq(kp_mapping[last_key.row][last_key.col]);
 	else
-		hp->startup();
+		hp->send_startup_seq();
   }
   else
   {
@@ -366,8 +366,8 @@
     }
 
 	// at each loop iteration, send buffered keycodes, if any
-	if (hp != NULL)
-	  hp->send_key_when_idle();
+	//if (hp != NULL)
+	//  hp->send_key_when_idle();
 
     if ((hp != NULL) && (hp->cmd_available()))
     {

mercurial