comparison mediaplayer.c @ 2302:0343f0d5add0

Fix libretro build for real
author Michael Pavone <pavone@retrodev.com>
date Sun, 12 Mar 2023 20:03:35 -0700
parents 789802d99629
children 97f164d1f0f6
comparison
equal deleted inserted replaced
2301:d30ea441b92e 2302:0343f0d5add0
609 flac_frame(player); 609 flac_frame(player);
610 break; 610 break;
611 } 611 }
612 break; 612 break;
613 case STATE_PAUSED: 613 case STATE_PAUSED:
614 #ifndef IS_LIB
614 render_sleep_ms(15); 615 render_sleep_ms(15);
615 break; 616 #endif
616 } 617 break;
618 }
619 //TODO: Fix this for libretro build properly
620 #ifndef IS_LIB
617 render_update_display(); 621 render_update_display();
622 #endif
618 } 623 }
619 } 624 }
620 625
621 static void gamepad_down(system_header *system, uint8_t pad, uint8_t button) 626 static void gamepad_down(system_header *system, uint8_t pad, uint8_t button)
622 { 627 {