Compare commits

..

No commits in common. "0f8a359f16bdb46b32b806fd30492d70c91373cc" and "64ddd9075c850a7928dc988ca9432decc7d4bbda" have entirely different histories.

2 changed files with 4 additions and 6 deletions

View file

@ -14,9 +14,8 @@ If you want an extra challenge, you could do hard mode, where the user must manu
You can also skip the password entry entirely if you'd prefer, by adding `--skip` to the flags.
If you'd like to preload sounds, in case of playback issues, add `--preload` to the flags.
And if you'd like to preload sounds, in case of playback issues, add `--preload` to the flags.
Finally, if you'd prefer not to have sound, you may add `--no-sound` to the flags.
Passwords
================

View file

@ -30,7 +30,7 @@ _queueRunning = False
def slowWrite(window, text, pause = LETTER_PAUSE, fake_user = False):
"""
wrapper for curses.addstr() which writes the text slowly
wrapper for curses.addstr() which writes the text slowely
"""
if not fake_user:
addSound("beep")
@ -114,7 +114,7 @@ def _playQueue():
if _queueRunning:
return
_queueRunning = True
while _soundCheck():
while 1:
if len(_soundQueue) > 0:
_playSound(_soundQueue[0], True)
_soundQueue.pop(0)
@ -152,8 +152,7 @@ def addSound(file):
Add sounds to the queue
"""
global _soundQueue
if soundCheck():
_soundQueue.extend([file])
_soundQueue.extend([file])
_queueMgr = Thread(target=_playQueue)