aboutsummaryrefslogtreecommitdiff
path: root/patches/gme
diff options
context:
space:
mode:
authorneonloop2022-03-25 21:28:29 +0000
committerneonloop2022-03-25 21:28:29 +0000
commitcb4df55984b07f4ca80a6fcf5ddda85cb9f540af (patch)
treeaf00c81dc9f3f7c829d3b0464271c713b2ebd04f /patches/gme
parente506386fc683b18c2e25a27e8c3f7a220a92e5e1 (diff)
downloadpicoarch-cb4df55984b07f4ca80a6fcf5ddda85cb9f540af.tar.gz
picoarch-cb4df55984b07f4ca80a6fcf5ddda85cb9f540af.tar.bz2
picoarch-cb4df55984b07f4ca80a6fcf5ddda85cb9f540af.zip
Updates patches for upstream changes
Diffstat (limited to 'patches/gme')
-rw-r--r--patches/gme/0001-fix-sample-size.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/patches/gme/0001-fix-sample-size.patch b/patches/gme/0001-fix-sample-size.patch
deleted file mode 100644
index 27cc6b1..0000000
--- a/patches/gme/0001-fix-sample-size.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/src/libretro.c b/src/libretro.c
-index 1e2b37f..d393a5a 100644
---- a/src/libretro.c
-+++ b/src/libretro.c
-@@ -180,7 +180,7 @@ void retro_run(void)
- draw_ui();
- video_cb(framebuffer->pixel_data, framebuffer->width, framebuffer->height, framebuffer->bytes_per_pixel * framebuffer->width);
- //audio handling
-- audio_batch_cb(play(),1470);
-+ audio_batch_cb(play(),735);
- }
-
- // File Loading
-diff --git a/src/player.c b/src/player.c
-index 1daf980..e7c69be 100644
---- a/src/player.c
-+++ b/src/player.c
-@@ -86,7 +86,7 @@ short *play(void)
- is_playing_ = false;
- }
- else
-- gme_play( emu, 2048, audio_buffer );
-+ gme_play( emu, 1470, audio_buffer );
- }
- else
- memset(audio_buffer,0,8192 * sizeof(short));