diff options
author | Max Horn | 2003-07-03 23:44:28 +0000 |
---|---|---|
committer | Max Horn | 2003-07-03 23:44:28 +0000 |
commit | 0e2767e354e4366aeb17f91d1b45daa7fc881301 (patch) | |
tree | d35ae58de1bd00556151d83ff80208f2b8ac65f0 | |
parent | 097a2bc9d1a2fb0a774e48d833fe3fd8fc8ccfa3 (diff) | |
download | scummvm-rg350-0e2767e354e4366aeb17f91d1b45daa7fc881301.tar.gz scummvm-rg350-0e2767e354e4366aeb17f91d1b45daa7fc881301.tar.bz2 scummvm-rg350-0e2767e354e4366aeb17f91d1b45daa7fc881301.zip |
const
svn-id: r8731
-rw-r--r-- | scumm/instrument.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/instrument.cpp b/scumm/instrument.cpp index 575dcf75a5..c6f84a39bf 100644 --- a/scumm/instrument.cpp +++ b/scumm/instrument.cpp @@ -40,7 +40,7 @@ static const byte mt32_to_gm[128] = { }; static struct { - char *name; + const char *name; byte program; } |