From 4d2a96673d6e04fe8c405ffb524c7ed3b3f0c30d Mon Sep 17 00:00:00 2001 From: Jeremy Rand Date: Fri, 18 Dec 2020 13:26:42 -0500 Subject: [PATCH] Add some more bugs to the list. --- BUGS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BUGS.md b/BUGS.md index 692d2af..3111e43 100644 --- a/BUGS.md +++ b/BUGS.md @@ -12,6 +12,8 @@ This is a list of the software bugs (as opposed to the bugs in the game that you * Something is trashing memory. * A spider moving left to right went off screen and left garbage on the RHS as it exited. I have only seen this once. I think it coincided with the player dying. * Sometimes when the player dies, the "you can shoot" indicator is left behind as garbage on-screen. +* Sometimes when you die, a spider may enter and the spider sound will start playing. Because audio is stopped by player death and it has already happened, the spider sound ends up going on even though the spider is not moving. +* Sometimes the spider doesn't seem to freeze when the player dies. This may be related to the sound problem also. If the per-frame spider update code isn't handling player death correctly, that could explain both.