summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2006-04-06 20:44:33 +0000
committerThom Johansen <thomj@rockbox.org>2006-04-06 20:44:33 +0000
commitcf23618980461702dc7f75e77c480afb09b86c10 (patch)
tree088c9dbbfbc60c74b3c7cc28219365499322309a
parentba0876743412ffaf9e549ccb9899468ad9ad5dbf (diff)
downloadrockbox-cf23618980461702dc7f75e77c480afb09b86c10.tar.gz
rockbox-cf23618980461702dc7f75e77c480afb09b86c10.zip
Fix GCC trying to use memcpy for GCC 4.1 and allow Doom to compile.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9539 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/doom/d_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/doom/d_main.c b/apps/plugins/doom/d_main.c
index 2c03752abe..8dd9e4e810 100644
--- a/apps/plugins/doom/d_main.c
+++ b/apps/plugins/doom/d_main.c
@@ -736,7 +736,7 @@ void D_DoomMainSetup(void)
736 { 736 {
737 // These are the lumps that will be checked in IWAD, 737 // These are the lumps that will be checked in IWAD,
738 // if any one is not present, execution will be aborted. 738 // if any one is not present, execution will be aborted.
739 char name[23][8]= 739 const char name[23][8]=
740 { 740 {
741 "e2m1","e2m2","e2m3","e2m4","e2m5","e2m6","e2m7","e2m8","e2m9", 741 "e2m1","e2m2","e2m3","e2m4","e2m5","e2m6","e2m7","e2m8","e2m9",
742 "e3m1","e3m3","e3m3","e3m4","e3m5","e3m6","e3m7","e3m8","e3m9", 742 "e3m1","e3m3","e3m3","e3m4","e3m5","e3m6","e3m7","e3m8","e3m9",