~ubuntu-branches/ubuntu/karmic/frozen-bubble/karmic

« back to all changes in this revision

Viewing changes to SDL_mixer_patched/mikmod/npertab.c

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2002-04-17 09:21:51 UTC
  • Revision ID: james.westby@ubuntu.com-20020417092151-7ye6ril7bgg9g0he
Tags: upstream-0.9.2
ImportĀ upstreamĀ versionĀ 0.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*      MikMod sound library
 
2
        (c) 1998, 1999 Miodrag Vallat and others - see file AUTHORS for
 
3
        complete list.
 
4
 
 
5
        This library is free software; you can redistribute it and/or modify
 
6
        it under the terms of the GNU Library General Public License as
 
7
        published by the Free Software Foundation; either version 2 of
 
8
        the License, or (at your option) any later version.
 
9
 
 
10
        This program is distributed in the hope that it will be useful,
 
11
        but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
        GNU Library General Public License for more details.
 
14
 
 
15
        You should have received a copy of the GNU Library General Public
 
16
        License along with this library; if not, write to the Free Software
 
17
        Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
18
        02111-1307, USA.
 
19
*/
 
20
 
 
21
/*==============================================================================
 
22
 
 
23
  $Id: npertab.c,v 1.3 1999/12/28 18:51:11 hercules Exp $
 
24
 
 
25
  MOD format period table.  Used by both the MOD and M15 (15-inst mod) Loaders.
 
26
 
 
27
==============================================================================*/
 
28
 
 
29
#ifdef HAVE_CONFIG_H
 
30
#include "config.h"
 
31
#endif
 
32
 
 
33
#include "mikmod_internals.h"
 
34
 
 
35
UWORD npertab[7*OCTAVE]={
 
36
        /* -> Tuning 0 */
 
37
        1712,1616,1524,1440,1356,1280,1208,1140,1076,1016, 960, 906,
 
38
         856, 808, 762, 720, 678, 640, 604, 570, 538, 508, 480, 453,
 
39
         428, 404, 381, 360, 339, 320, 302, 285, 269, 254, 240, 226,
 
40
         214, 202, 190, 180, 170, 160, 151, 143, 135, 127, 120, 113,
 
41
         107, 101,  95,  90,  85,  80,  75,  71,  67,  63,  60,  56,
 
42
 
 
43
          53,  50,  47,  45,  42,  40,  37,  35,  33,  31,  30,  28,
 
44
          27,  25,  24,  22,  21,  20,  19,  18,  17,  16,  15,  14
 
45
};
 
46
 
 
47
/* ex:set ts=4: */