fixed PRINT_LOG in samples

Signed-off-by: h4570 <sandro.sobczynski@gmail.com>
This commit is contained in:
h4570
2021-05-28 19:30:45 +02:00
parent 0816f522bb
commit dd8499abad
13 changed files with 44 additions and 42 deletions
+2 -2
View File
@@ -23,7 +23,7 @@
Player::Player(Audio *t_audio, TextureRepository *t_texRepo)
{
PRINT_LOG("Creating player object");
consoleLog("Creating player object");
texRepo = t_texRepo;
audio = t_audio;
gravity = 0.1F;
@@ -53,7 +53,7 @@ Player::Player(Audio *t_audio, TextureRepository *t_texRepo)
boomAdpcm = audio->loadADPCM("sounds/boom.adpcm");
audio->setADPCMVolume(70, 0);
PRINT_LOG("Player object created!");
consoleLog("Player object created!");
}
Player::~Player()