~ubuntu-branches/debian/squeeze/openttd/squeeze

« back to all changes in this revision

Viewing changes to src/sound/allegro_s.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthijs Kooijman, cdcb73a
  • Date: 2009-12-24 00:55:45 UTC
  • mfrom: (1.1.9 upstream) (2.1.7 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091224005545-ffwi801t8mvqtgwz
[cdcb73a] Imported Upstream version 0.7.5. This release fixes
CVE-2009-4007.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: allegro_s.h 14631 2008-11-25 21:09:00Z rubidium $ */
 
1
/* $Id: allegro_s.h 17987 2009-11-06 22:53:21Z rubidium $ */
2
2
 
3
3
/** @file allegro_s.h Base fo playing sound via Allegro. */
4
4
 
18
18
 
19
19
class FSoundDriver_Allegro: public SoundDriverFactory<FSoundDriver_Allegro> {
20
20
public:
21
 
        static const int priority = 5;
 
21
        static const int priority = 4;
22
22
        /* virtual */ const char *GetName() { return "allegro"; }
23
23
        /* virtual */ const char *GetDescription() { return "Allegro Sound Driver"; }
24
24
        /* virtual */ Driver *CreateInstance() { return new SoundDriver_Allegro(); }