Skip to content

Commit

Permalink
lol
Browse files Browse the repository at this point in the history
  • Loading branch information
mehanix committed Apr 15, 2020
1 parent 9459813 commit eb2d4ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified GRTAGS
Binary file not shown.
4 changes: 2 additions & 2 deletions src/GUI/Piano.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ Piano::Piano()
/// Adauga clape albe
for (int i = 0; i < 14; i++)
{
piano.push_back(std::make_shared<WhiteKey>(new WhiteKey(tKeyWhite, tKeyWhitePressed,i,std::to_string(i)+".ogg")));
piano.push_back(std::shared_ptr<WhiteKey>(new WhiteKey(tKeyWhite, tKeyWhitePressed,i,std::to_string(i)+".ogg")));
}
/// Adauga clape negre
for (int i = 0; i < 10; i++)
{
piano.push_back(std::make_shared<BlackKey>(new BlackKey(tKeyBlack, tKeyBlackPressed,14+i,std::to_string(14+i) + ".ogg")));
piano.push_back(std::shared_ptr<BlackKey>(new BlackKey(tKeyBlack, tKeyBlackPressed,14+i,std::to_string(14+i) + ".ogg")));
}

setPositions();
Expand Down

0 comments on commit eb2d4ea

Please sign in to comment.