Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MacOS-9 committed Jul 1, 2023
1 parent 43c210e commit 72492ff
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Unit1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void __fastcall TForm1::playButtonClick(TObject *Sender)
workButton->Left = 88;
shopButton->Caption = "Go to the shop";
shopButton->Visible = true;
shopButton->Left = 192;
shopButton->Left = 192;
beniuCaught = false;
stonkFishCaught = false;
tryAgainButton->Visible = false;
Expand Down
6 changes: 6 additions & 0 deletions Unit1.~cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ void __fastcall TForm1::playButtonClick(TObject *Sender)
itemsBox->Clear();
for (int i = 0; i < itemCount; i++)
itemsBox->AddItem("Baguette", NULL);
workButton->Caption = "Work at the park";
workButton->Visible = true;
workButton->Left = 88;
shopButton->Caption = "Go to the shop";
shopButton->Visible = true;
shopButton->Left = 192;
beniuCaught = false;
stonkFishCaught = false;
tryAgainButton->Visible = false;
Expand Down
4 changes: 2 additions & 2 deletions Unit1.~dfm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
object Form1: TForm1
Left = 339
Top = 138
Left = 304
Top = 193
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'hug the sealand v1.1'
Expand Down

0 comments on commit 72492ff

Please sign in to comment.