- Oct 29, 2003
- 1,269
- 2
- 265
YouKnowWho said:You should be able to change that. Do you have a copy of the Delphi client source?
Edit: Found my copy of the source.
Code:drawingbottomline := 450; if mmm < drawingbottomline then begin //ºÒÇÊ¿äÇÏ°Ô ±×¸®´Â °ÍÀ» ÇÇÇÔ ObjSurface.Draw (n, mmm, DSurface.ClientRect, DSurface, TRUE) end;
This is why there is a black part, because the client does not draw anything after line 450. If you open the client exe in a hex editor, and search for 450 it should just be a simple case of changing it to 640 (the height of the screen).
However there may be more than one variable with that value, so you will need to either change them all, or try and find the correct one.
what else in the delphi source do you think you would need to change? :P
i tried that 450 to 640 and it made no difference :\
