Explorar el Código

audio: add Sampler::StopSample() method.

legacy
Sam Hocevar sam hace 12 años
padre
commit
4bf349fe81
Se han modificado 2 ficheros con 7 adiciones y 0 borrados
  1. +6
    -0
      src/sampler.cpp
  2. +1
    -0
      src/sampler.h

+ 6
- 0
src/sampler.cpp Ver fichero

@@ -60,5 +60,11 @@ void Sampler::PlaySample(int id)
sample->Play();
}

void Sampler::StopSample(int id)
{
Sample *sample = (Sample *)data->samples.GetEntity(id - 1);
sample->Stop();
}

} /* namespace lol */


+ 1
- 0
src/sampler.h Ver fichero

@@ -29,6 +29,7 @@ public:
static void Deregister(int id);

static void PlaySample(int id);
static void StopSample(int id);

private:
Sampler() {}


Cargando…
Cancelar
Guardar