mplay

Controllable music player
git clone https://git.sinitax.com/sinitax/mplay
Log | Files | Refs | sfeed.txt

commit d407878575deae22768fc120f158d5f5ad6f88c8
parent c1d226be9672047fd66c20fde4bb2b3d197aa260
Author: Louis Burda <quent.burda@gmail.com>
Date:   Sun,  7 Apr 2024 23:39:45 +0200

Report MPLAY_KEY_EOF for EOF

Diffstat:
Mmplay.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/mplay.h b/mplay.h @@ -109,6 +109,8 @@ mplay_getkey(void) default: return MPLAY_KEY_INV; } + case EOF: + return MPLAY_KEY_EOF; default: return c > 0 ? (c & 0xff) : c; }