Skip to content

Commit

Permalink
fixing macos build
Browse files Browse the repository at this point in the history
  • Loading branch information
Kbz-8 committed Feb 4, 2024
1 parent 7702e7f commit 4e59d5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Akel/Runtime/Includes/AkelEntryPoint.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// This file is a part of Akel
// Authors : @kbz_8
// Created : 31/01/2024
// Updated : 04/02/2024
// Updated : 05/02/2024

#ifndef __AK_CORE_ENTRY_POINT__
#define __AK_CORE_ENTRY_POINT__
Expand All @@ -18,7 +18,7 @@ extern void AkelSetupApplication(Ak::Application& app);
int APIENTRY WinMain(HINSTANCE hInst, HINSTANCE hInstPrev, PSTR cmdline, int cmdshow)
{
Ak::WindowsInstance os;
os.Init(ac, av);
os.Init();

os.Shutdown();
return 0;
Expand All @@ -44,7 +44,7 @@ extern void AkelSetupApplication(Ak::Application& app);
int main(int ac, char** av)
{
Ak::MacOSInstance os;
os.Init(ac, av);
os.Init();

os.Shutdown();
return 0;
Expand Down

0 comments on commit 4e59d5b

Please sign in to comment.