Exemplo n.º 1
0
    void pause_song(FMOD.Channel c)
    {
        FMOD.RESULT result;
        bool paused = false;

        if (channel != null) {
            result = c.getPaused(ref paused);
            ERRCHECK(result);
            result = c.setPaused(!paused);
            ERRCHECK (result);
        }
    }