mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-13 07:58:04 +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;
|
FSoundChan* chan = Channels;
|
||||||
while (chan)
|
while (chan)
|
||||||
{
|
{
|
||||||
auto next = chan = chan->NextChan;
|
auto next = chan->NextChan;
|
||||||
int res = callback(chan);
|
int res = callback(chan);
|
||||||
if (res) return res > 0;
|
if (res) return res > 0;
|
||||||
chan = next;
|
chan = next;
|
||||||
|
|
|
@ -28,7 +28,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
BEGIN_PS_NS
|
BEGIN_PS_NS
|
||||||
|
|
||||||
|
|
||||||
short bShowTowers = kFalse;int ldMapZoom;
|
short bShowTowers = kFalse;
|
||||||
|
int ldMapZoom;
|
||||||
int lMapZoom;
|
int lMapZoom;
|
||||||
|
|
||||||
void MarkSectorSeen(short nSector);
|
void MarkSectorSeen(short nSector);
|
||||||
|
|
Loading…
Reference in a new issue