--- BasiliskII/src/prefs.cpp 2002/01/15 14:58:32 1.13 +++ BasiliskII/src/prefs.cpp 2007/07/28 15:45:12 1.16 @@ -1,7 +1,7 @@ /* * prefs.cpp - Preferences handling * - * Basilisk II (C) 1997-2002 Christian Bauer + * Basilisk II (C) 1997-2005 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 @@ -121,6 +121,11 @@ void PrefsInit(int &argc, char **&argv) argc -= k; } } + +#ifdef SHEEPSHAVER + // System specific initialization + prefs_init(); +#endif } @@ -130,6 +135,11 @@ void PrefsInit(int &argc, char **&argv) void PrefsExit(void) { +#ifdef SHEEPSHAVER + // System specific deinitialization + prefs_exit(); +#endif + // Free prefs list prefs_node *p = the_prefs, *next; while (p) {