Resub post review. Marcus came to the rescue and fixed the SR for me :-) Baselib also updated OBS-URL: https://build.opensuse.org/request/show/161264 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libmikmod?expand=0&rev=18
17 lines
528 B
Diff
17 lines
528 B
Diff
Yi-Huang Han - Wed Oct 24 21:55:47 PDT 2001
|
|
* Fixed MOD music volume when looping
|
|
|
|
Index: libmikmod-3.1.12/playercode/mplayer.c
|
|
===================================================================
|
|
--- libmikmod-3.1.12.orig/playercode/mplayer.c
|
|
+++ libmikmod-3.1.12/playercode/mplayer.c
|
|
@@ -3019,7 +3019,7 @@ MIKMODAPI void Player_SetVolume(SWORD vo
|
|
{
|
|
MUTEX_LOCK(vars);
|
|
if (pf)
|
|
- pf->volume=(volume<0)?0:(volume>128)?128:volume;
|
|
+ pf->volume=pf->initvolume=(volume<0)?0:(volume>128)?128:volume;
|
|
MUTEX_UNLOCK(vars);
|
|
}
|
|
|