--- Frodo4/Src/Display_x.h 2003/07/14 13:59:02 1.3 +++ Frodo4/Src/Display_x.h 2009/01/11 11:32:38 1.7 @@ -2,7 +2,7 @@ * Display_x.h - C64 graphics display, emulator window handling, * X specific stuff * - * Frodo (C) 1994-1997,2002-2003 Christian Bauer + * Frodo (C) 1994-1997,2002-2009 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 @@ -775,6 +775,26 @@ bool C64Display::NumLock(void) /* + * Open/close joystick drivers given old and new state of + * joystick preferences + */ + +void C64::open_close_joysticks(int oldjoy1, int oldjoy2, int newjoy1, int newjoy2) +{ +} + + +/* + * Poll joystick port, return CIA mask + */ + +uint8 C64::poll_joystick(int port) +{ + return 0xff; +} + + +/* * Allocate C64 colors */ @@ -799,7 +819,7 @@ void C64Display::InitColors(uint8 *color * Show a requester (error message) */ -long int ShowRequester(char *a,char *b,char *) +long int ShowRequester(const char *a, const char *b, const char *) { printf("%s: %s\n", a, b); return 1;