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 f268037 commit 0905c15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Unit1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ void __fastcall TForm1::gameTimerTimer(TObject *Sender)
stonkFishHappinessBar->Width = stonkFishHappiness;
sealandHappinessBar->Color = TColor(RGB(sealandRed[0], sealandGreen[0], sealandBlue));
sealandHungerBar->Color = TColor(RGB(sealandRed[1], sealandGreen[1], sealandBlue));
beniuHappinessBar->Color = TColor(RGB(sealandRed[0], sealandGreen[0], sealandBlue));
beniuHungerBar->Color = TColor(RGB(beniuRed[1], beniuGreen[1], sealandBlue));
stonkFishHappinessBar->Color = TColor(RGB(stonkFishRed, stonkFishGreen, sealandBlue));
beniuHappinessBar->Color = TColor(RGB(beniuRed[0], beniuGreen[0], beniuBlue));
beniuHungerBar->Color = TColor(RGB(beniuRed[1], beniuGreen[1], beniuBlue));
stonkFishHappinessBar->Color = TColor(RGB(stonkFishRed, stonkFishGreen, stonkFishBlue));
statsLabel->Caption = "Money: " + IntToStr(money) + "\nItems: " + IntToStr(itemCount);
if (sealandHappiness > 112)
sealandHappiness = 112;
Expand Down
Binary file modified Unit1.obj
Binary file not shown.

0 comments on commit 0905c15

Please sign in to comment.