--- BasiliskII/src/BeOS/xpram_beos.cpp 1999/10/03 14:16:25 1.1.1.1 +++ BasiliskII/src/BeOS/xpram_beos.cpp 2000/04/10 18:52:59 1.3 @@ -1,7 +1,7 @@ /* * xpram_beos.cpp - XPRAM handling, BeOS specific stuff * - * Basilisk II (C) 1997-1999 Christian Bauer + * Basilisk II (C) 1997-2000 Christian Bauer * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -58,7 +58,7 @@ void SaveXPRAM(void) if (xpram_path.InitCheck() != B_NO_ERROR) return; int fd; - if ((fd = open(xpram_path.Path(), O_WRONLY | O_CREAT, 0664)) >= 0) { + if ((fd = open(xpram_path.Path(), O_WRONLY | O_CREAT, 0666)) >= 0) { write(fd, XPRAM, 256); close(fd); }