#Window routine HELP!!!
21-Jan-92 19:34:53
Sb: #19273-#Window routine HELP!!!
Fm: KEITH YOUNG 73170,307
To: Steve Jackson Games 73407,515
Steve,
I think your diagnosis of the problem is incorrect… I believe that the
problem is that you did not tell the compiler (via a prototype) that the
first arguement to the function was a window pointer and not an int.
If this is the problem, you should be able to fix it by adding a
prototype (I normally have all functions prototyped in a file that gets
included into all modules) for that function. For the timebeing, try
adding the line:
void Dump_Pixel(struct Window *iff_win, int x, int y);
.. right before the routine itself and see if that fixes it.
Keith