mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-22 01:02:17 -05:00
Silly mistake :$
This commit is contained in:
parent
1cd909537d
commit
12fca93826
@ -46,7 +46,7 @@ uses
|
||||
CastaliaSimplePasPar, v_AutoCompleteForm, PSDump;
|
||||
|
||||
const
|
||||
SimbaVersion = 655;
|
||||
SimbaVersion = 656;
|
||||
|
||||
type
|
||||
|
||||
|
@ -1341,9 +1341,9 @@ begin;
|
||||
if height > SearchBox.y2 then
|
||||
Screenbox.y2 := Screenbox.y2 + (height - SearchBox.y2);
|
||||
SearchBox.y2 := Height;
|
||||
SetLength(Screen, SearchBox.x2 + 1,Searchbox.y2 + 1);
|
||||
for i := ScreenBox.x2 downto 0 do
|
||||
FillChar(screen[i][0],screenbox.y2+1,0);
|
||||
SetLength(Screen, SearchBox.x2 + 1,SearchBox.y2 + 1);
|
||||
for i := SearchBox.x2 downto 0 do
|
||||
FillChar(screen[i][0],SearchBox.y2+1,0);
|
||||
SetLength(InversedTPA,(SearchBox.x2 + 1) * (Searchbox.y2 + 1));
|
||||
for I := 0 to LenSearch do
|
||||
Screen[ SearchTPA[I].x,SearchTPA[I].y] := True;
|
||||
|
Loading…
Reference in New Issue
Block a user