From b3bc6698a4be80cc3a6dd5cd294fcb149547e43d Mon Sep 17 00:00:00 2001
From: nightfox <>
Date: Tue, 19 May 2020 02:30:08 +0000
Subject: [PATCH] Version 1.08: Fixed a typo when calling GetKeyWithESCChars()

---
 xtrn/slyvote/readme.txt | 4 ++--
 xtrn/slyvote/slyvote.js | 8 +++++---
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/xtrn/slyvote/readme.txt b/xtrn/slyvote/readme.txt
index 14e4baf2a9..468fe37143 100644
--- a/xtrn/slyvote/readme.txt
+++ b/xtrn/slyvote/readme.txt
@@ -1,6 +1,6 @@
                                    SlyVote
-                                 Version 1.07
-                           Release date: 2020-04-04
+                                 Version 1.08
+                           Release date: 2020-05-18
 
                                      by
 
diff --git a/xtrn/slyvote/slyvote.js b/xtrn/slyvote/slyvote.js
index 5884eb0b16..27903c43d2 100644
--- a/xtrn/slyvote/slyvote.js
+++ b/xtrn/slyvote/slyvote.js
@@ -160,6 +160,8 @@
  *                              let the menu use a differnet list of items, to avoid
  *                              adding/copying a bunch of items via DDLightbarMenu's Add()
  *                              function.
+ * 2020-05-18 Eric Oulashin     Version 1.08
+ *                              Fixed a typo when calling GetKeyWithESCChars()
  */
 
 // TODO: Have a messsage group selection so that it doesn't have to display all
@@ -229,8 +231,8 @@ else
 var gAvatar = load({}, "avatar_lib.js");
 
 // Version information
-var SLYVOTE_VERSION = "1.07";
-var SLYVOTE_DATE = "2020-04-04";
+var SLYVOTE_VERSION = "1.08";
+var SLYVOTE_DATE = "2020-05-18";
 
 // Determine the script's startup directory.
 // This code is a trick that was created by Deuce, suggested by Rob Swindell
@@ -3258,7 +3260,7 @@ function ScrollFrame(pFrame, pScrollbar, pTopLineIdx, pTxtAttrib, pWriteTxtLines
 
 		// Get a keypress from the user and take action based on it
 		console.gotoxy(pPostWriteCurX, pPostWriteCurY);
-		retObj.lastKeypress = getKeyWithESCChars(K_UPPER|K_NOCRLF|K_NOECHO|K_NOSPIN);
+		retObj.lastKeypress = GetKeyWithESCChars(K_UPPER|K_NOCRLF|K_NOECHO|K_NOSPIN);
 		switch (retObj.lastKeypress)
 		{
 			case KEY_UP:
-- 
GitLab