mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- fixed EnumerateChannels.
This commit is contained in:
parent
920f424184
commit
fe1133e5c2
2 changed files with 3 additions and 2 deletions
|
@ -383,7 +383,7 @@ public:
|
|||
FSoundChan* chan = Channels;
|
||||
while (chan)
|
||||
{
|
||||
auto next = chan = chan->NextChan;
|
||||
auto next = chan->NextChan;
|
||||
int res = callback(chan);
|
||||
if (res) return res > 0;
|
||||
chan = next;
|
||||
|
|
|
@ -28,7 +28,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|||
BEGIN_PS_NS
|
||||
|
||||
|
||||
short bShowTowers = kFalse;int ldMapZoom;
|
||||
short bShowTowers = kFalse;
|
||||
int ldMapZoom;
|
||||
int lMapZoom;
|
||||
|
||||
void MarkSectorSeen(short nSector);
|
||||
|
|
Loading…
Reference in a new issue