Options Menu's adding dot's
Status: Beta
Brought to you by:
juhahart
bottom 3 "items" have dots at the start of them.
I have no clue if it has been fixed yet(but i rememmber
reading about it months ago)
File: QMenu.pas
procedure Menu_DrawStringR2L(x, y: integer; string_:
PChar);
var
i: integer;
begin
for i := 0 to strlen(string_) do
re.DrawChar(x - i * 8, y, byte(string_[strlen(string_) -
i - 1]));
end;
should b
procedure Menu_DrawStringR2L(x, y: integer; string_:
PChar);
var
i: integer;
begin
for i := 0 to strlen(string_) -1 do
re.DrawChar(x - i * 8, y, byte(string_[strlen(string_) -
i - 1]));
end;
Note the -1 added in the for loop.