Commit fa351bb1 authored by Steven Fuller's avatar Steven Fuller

another const.

parent ac612d80
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
int DigiMap[LASTSOUND]; int DigiMap[LASTSOUND];
static int wolfdigimap[] = static const int wolfdigimap[] =
{ {
#ifndef SPEAR #ifndef SPEAR
HALTSND, 0, HALTSND, 0,
...@@ -114,7 +114,8 @@ static int wolfdigimap[] = ...@@ -114,7 +114,8 @@ static int wolfdigimap[] =
void InitDigiMap() void InitDigiMap()
{ {
int *map, i; const int *map;
int i;
for (i = 0; i < LASTSOUND; i++) for (i = 0; i < LASTSOUND; i++)
DigiMap[i] = -1; DigiMap[i] = -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment