Skip to content

Commit

Permalink
make skip drawing when tape is running default option
Browse files Browse the repository at this point in the history
  • Loading branch information
zoran-vucenovic committed Dec 27, 2022
1 parent 1dd9a7a commit add77c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion swan.lpi
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<AutoIncrementBuild Value="True"/>
<MinorVersionNr Value="9"/>
<RevisionNr Value="1"/>
<BuildNr Value="5294"/>
<BuildNr Value="5296"/>
<StringTable FileDescription="Swan - ZX Spectrum emulator" LegalCopyright="Copyright 2022 Zoran Vučenović" OriginalFilename="Swan" ProductName="Swan - ZX Spectrum emulator" ProductVersion="0.9.1"/>
</VersionInfo>
<BuildModes>
Expand Down
3 changes: 2 additions & 1 deletion unit1.pas
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ procedure TForm1.FormCreate(Sender: TObject);
Caption := ApplicationName;
Spectrum := nil;

FSkipWriteScreen := False;
FSkipWriteScreen := True;
FWriteScreen := True;

Label1.Constraints.MinWidth := PanelStatus.Canvas.GetTextWidth('Wspeed 100.99%W');
Expand All @@ -420,6 +420,7 @@ procedure TForm1.FormCreate(Sender: TObject);
ScreenSizeFactor := 2;
SetScreenSizeFactor(1);
end;
UpdateCheckWriteScreen;
//
TCommonFunctionsLCL.FormToScreenCentre(Self);
end;
Expand Down

0 comments on commit add77c6

Please sign in to comment.