summaryrefslogtreecommitdiff
path: root/helper.cpp
diff options
context:
space:
mode:
authorStephen Enders <smenders@gmail.com>2021-01-05 01:16:37 -0500
committerStephen Enders <smenders@gmail.com>2021-01-05 01:16:37 -0500
commit1dbd3c241ea6af43a26449e515438cc241de46ad (patch)
tree5a0db7bacaa4802d3980a25d9df5998df5c49b46 /helper.cpp
parent443d7ec4b25da99a52c9b3b06fb1d954b060a912 (diff)
Pass reference when passing objects!
Diffstat (limited to 'helper.cpp')
-rw-r--r--helper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/helper.cpp b/helper.cpp
index 97a60a6..8c68a28 100644
--- a/helper.cpp
+++ b/helper.cpp
@@ -39,7 +39,7 @@ sf::Font loadFont()
}
std::shared_ptr<struct piece_t>
-createPiece(int id, sf::Texture texture)
+createPiece(int id, sf::Texture& texture)
{
sf::Sprite s(texture);
@@ -51,7 +51,7 @@ createPiece(int id, sf::Texture texture)
}
std::shared_ptr<struct player_t>
-createPlayer(sf::Texture texture)
+createPlayer(sf::Texture& texture)
{
std::shared_ptr<struct player_t> player = std::make_shared<struct player_t>();
player->score = 0;