View | Details | Raw Unified | Return to bug 261844
Collapse All | Expand All

(-)b/emulators/fceux/Makefile (-2 / +2 lines)
Lines 1-5 Link Here
1
PORTNAME=	fceux
1
PORTNAME=	fceux
2
DISTVERSION=	2.6.1
2
DISTVERSION=	2.6.2
3
CATEGORIES=	emulators games
3
CATEGORIES=	emulators games
4
MASTER_SITES=	SF/fceultra/Source%20Code/${DISTVERSION}%20src/
4
MASTER_SITES=	SF/fceultra/Source%20Code/${DISTVERSION}%20src/
5
5
Lines 13-19 LIB_DEPENDS= libminizip.so:archivers/minizip Link Here
13
13
14
USES=		cmake desktop-file-utils gl lua:51 pkgconfig qt:5 sdl
14
USES=		cmake desktop-file-utils gl lua:51 pkgconfig qt:5 sdl
15
USE_GL=		gl glu
15
USE_GL=		gl glu
16
USE_QT=		buildtools_build core gui opengl qmake_build sql widgets
16
USE_QT=		buildtools_build core gui opengl qmake_build widgets
17
USE_SDL=	sdl2
17
USE_SDL=	sdl2
18
18
19
CFLAGS+=	-DPUBLIC_RELEASE
19
CFLAGS+=	-DPUBLIC_RELEASE
(-)b/emulators/fceux/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1642789615
1
TIMESTAMP = 1644250746
2
SHA256 (fceux-2.6.1.tar.gz) = 3a845dfe97975b5c5fd2e9637fe31e79ddc2f337d99a61296134d82c641d02d6
2
SHA256 (fceux-2.6.2.tar.gz) = 2dc943cf9719919c61752c8f4d00cb911ecddbc9e9ef239eb65b5dcd3b9d9707
3
SIZE (fceux-2.6.1.tar.gz) = 23326768
3
SIZE (fceux-2.6.2.tar.gz) = 23334976
(-)a/emulators/fceux/files/patch-src_drivers_Qt_sdl-sound.cpp (-13 lines)
Removed Link Here
1
--- src/drivers/Qt/sdl-sound.cpp.orig	2022-01-21 20:48:31 UTC
2
+++ src/drivers/Qt/sdl-sound.cpp
3
@@ -219,8 +219,7 @@ InitSound()
4
 	spec.freq = s_SampleRate = soundrate;
5
 	spec.format = AUDIO_S16SYS;
6
 	spec.channels = 1;
7
-	//spec.samples = 512;
8
-	spec.samples = (int)( ( (double)s_SampleRate / getBaseFrameRate() ) );
9
+	spec.samples = 512;
10
 	spec.callback = fillaudio;
11
 	spec.userdata = 0;
12
 
13
- 

Return to bug 261844