~ubuntu-branches/ubuntu/wily/xmms2/wily

« back to all changes in this revision

Viewing changes to src/plugins/gme/gme/Ym2413_Emu.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2008-07-04 16:23:34 UTC
  • mfrom: (1.1.5 upstream) (6.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080704162334-b3esbkcapt8wbrk4
Tags: 0.5DrLecter-2ubuntu1
* Merge from debian unstable (LP: #241098), remaining changes:
  + debian/control:
    + Update Maintainer field
    + add lpia to xmms2-plugin-alsa supported architectures
    + Added liba52-0.7.4-dev to build depends
  + debian/rules: Added patch, patch-stamp and unpatch
  + changed 01_gcc4.3.patch:
    + src/include/xmmsclient/xmmsclient++/helpers.h: Added #include <climits>
* New upstream relase fixes LP: #212566, #222341

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
// Use in place of Ym2413_Emu.cpp and ym2413.c to disable support for this chip
 
3
 
 
4
// Game_Music_Emu 0.5.2. http://www.slack.net/~ant/
 
5
 
 
6
#include "Ym2413_Emu.h"
 
7
 
 
8
Ym2413_Emu::Ym2413_Emu() { }
 
9
 
 
10
Ym2413_Emu::~Ym2413_Emu() { }
 
11
 
 
12
int Ym2413_Emu::set_rate( double, double ) { return 2; }
 
13
 
 
14
void Ym2413_Emu::reset() { }
 
15
 
 
16
void Ym2413_Emu::write( int, int ) { }
 
17
 
 
18
void Ym2413_Emu::mute_voices( int ) { }
 
19
 
 
20
void Ym2413_Emu::run( int, sample_t* ) { }
 
21