---------- Initial Header -----------
From : interfacekit-bounce@xxxxxxxxxxxxx
To : interfacekit@xxxxxxxxxxxxx
Cc :
Date : Mon, 10 Nov 2003 14:14:05 +0000
Subject : [interfacekit] Re: R3 legacy code in R5 drivers?!?
> Hi there,
>
> It's working now!
>
Great!
> It turns out to be a simple error in the R4 graphics drivers kit, and so also
> in my drivers:
>
> In InitAccelerant.c, function:
> status_t CLONE_ACCELERANT(void *data) {
>
> The following
> /* the data is the device name */
> strcpy(path, "/dev");
>
> should be replaced with:
> /* the data is the device name */
> strcpy(path, "/dev/");
>
> So it's a simple matter of adding a '/' after '/dev' :-)
Ehehe! Those silly errors aren't so easy to track down :)
> So indeed the functions that rely on GraphicsCard.h (R3) are translated
> within BWindowScreen and the use of a cloned accelerant. All other functions
> are called via the primary accelerant AFAICT.
Hm, that means I have no excuses now and I have to finish BWindowScreen :PPP
Expect some mails to your box in short time :)