From be2a895144ed24258614acaa9fc080f1dee17f19 Mon Sep 17 00:00:00 2001 From: Mahyar Koshkouei Date: Mon, 8 Jan 2018 00:15:17 +0000 Subject: [PATCH] Add issue numbers to todo labels There should be no untracked todo's. Signed-off-by: Mahyar Koshkouei --- mpv-libretro.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mpv-libretro.c b/mpv-libretro.c index 4d014ca..03f4686 100644 --- a/mpv-libretro.c +++ b/mpv-libretro.c @@ -332,7 +332,7 @@ static void retropad_update_input(void) if(current.a == 1 && last.a == 0) mpv_command_string(mpv, "cycle pause"); - /* Press and hold commands with small delay */ + /* TODO #3: Press and hold commands with small delay */ if(input_state_cb(0, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_LEFT)) mpv_command_string(mpv, "seek -5"); @@ -415,7 +415,7 @@ void retro_run(void) } retropad_update_input(); - /* TODO: Implement an audio callback feature in to libmpv */ + /* TODO #2: Implement an audio callback feature in to libmpv */ /* audio_callback(); */ mpv_opengl_cb_draw(mpv_gl, hw_render.get_current_framebuffer(), width, height);