-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modplug: add patch to remove the deprecated
register
keyword
- Loading branch information
1 parent
f382808
commit 101e12c
Showing
3 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Index: libmodplug-0.8.9.0/src/fastmix.cpp | ||
=================================================================== | ||
--- libmodplug-0.8.9.0.orig/src/fastmix.cpp | ||
+++ libmodplug-0.8.9.0/src/fastmix.cpp | ||
@@ -288,7 +288,7 @@ CzWINDOWEDFIR sfir; | ||
// MIXING MACROS | ||
// ---------------------------------------------------------------------------- | ||
#define SNDMIX_BEGINSAMPLELOOP8\ | ||
- register MODCHANNEL * const pChn = pChannel;\ | ||
+ MODCHANNEL * const pChn = pChannel;\ | ||
nPos = pChn->nPosLo;\ | ||
const signed char *p = (signed char *)(pChn->pCurrentSample+pChn->nPos);\ | ||
if (pChn->dwFlags & CHN_STEREO) p += pChn->nPos;\ | ||
@@ -296,7 +296,7 @@ CzWINDOWEDFIR sfir; | ||
do { | ||
|
||
#define SNDMIX_BEGINSAMPLELOOP16\ | ||
- register MODCHANNEL * const pChn = pChannel;\ | ||
+ MODCHANNEL * const pChn = pChannel;\ | ||
nPos = pChn->nPosLo;\ | ||
const signed short *p = (signed short *)(pChn->pCurrentSample+(pChn->nPos*2));\ | ||
if (pChn->dwFlags & CHN_STEREO) p += pChn->nPos;\ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
no_register |