freebsd-ports/emulators/truereality/files/patch-ac
Will Andrews b962685c91 Update to 1999121400 version, and add Alpha support. I modified the
patch Mario created for the Makefile so it would use proper Makefile logic.

PR:		18734
Submitted by:	MAINTAINER
2000-05-22 07:18:04 +00:00

13 lines
661 B
Plaintext

--- N64/memory.c.orig Sat May 20 15:18:49 2000
+++ N64/memory.c Sat May 20 15:20:56 2000
@@ -312,7 +312,8 @@
mem_shminfo[i].shmid = shmget(IPC_PRIVATE, mem_size[i], IPC_CREAT | 0777);
if(mem_shminfo[i].shmid < 0)
{
- printf("alloc_n64_mem: Couldn't get SHM ID [%d]\n\n", i);
+ printf("alloc_n64_mem: Couldn't get SHM ID [%d]\n", i);
+ printf("alloc_n64_mem: Try increasing the kernel limits SHMMAX and SHMALL\n\n");
return(-1);
}