--- Frodo4/Src/main_Be.h 2003/07/02 14:46:24 1.3 +++ Frodo4/Src/main_Be.h 2004/01/13 17:08:58 1.6 @@ -1,7 +1,7 @@ /* * main_Be.h - Main program, BeOS specific stuff * - * Frodo (C) 1994-1997,2002-2003 Christian Bauer + * Frodo (C) 1994-1997,2002-2004 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 @@ -175,9 +175,9 @@ void Frodo::MessageReceived(BMessage *ms } break; - case MSG_PREFS_DONE: // Preferences editor closed + case MSG_PREFS_DONE: { // Preferences editor closed Prefs *prefs; - msg->FindPointer("prefs", &prefs); + msg->FindPointer("prefs", (void **)&prefs); if (!msg->FindBool("canceled")) { TheC64->NewPrefs(prefs); ThePrefs = *prefs; @@ -188,6 +188,7 @@ void Frodo::MessageReceived(BMessage *ms TheC64->TheDisplay->Resume(); TheC64->Resume(); break; + } case MSG_RESET: // Reset C64 if (TheC64 != NULL) @@ -356,9 +357,9 @@ public: MovePenTo(204, 40); DrawString("by Christian Bauer"); MovePenTo(204, 52); - DrawString(""); + DrawString(""); MovePenTo(204, 75); - DrawString(B_UTF8_COPYRIGHT " Copyright 1994-1997"); + DrawString(B_UTF8_COPYRIGHT " Copyright 1994-1997,2002-2004"); MovePenTo(204, 87); DrawString("Freely distributable."); }