minor bugfixes #38

Merged
MartinFouilleul merged 3 commits from minor_bugfixes into codebase_restructuring 2023-08-11 08:55:23 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 1366bebe2d - Show all commits

View File

@ -74,15 +74,15 @@ ORCA_EXPORT void OnInit(void)
if(mg_image_is_nil(waterImage))
{
log_error("coulnd't load ball image\n");
log_error("couldn't load water image\n");
}
if(mg_image_is_nil(ballImage))
{
log_error("coulnd't load ball image\n");
log_error("couldn't load ball image\n");
}
if(mg_image_is_nil(paddleImage))
{
log_error("coulnd't load paddle image\n");
log_error("couldn't load paddle image\n");
}
str8 fontStr = loadFile(mem_scratch(), STR8("/Literata-SemiBoldItalic.ttf"));