diff --git a/examples/Demo/main.cpp b/examples/Demo/main.cpp index 2d6d0a4..92ecf92 100644 --- a/examples/Demo/main.cpp +++ b/examples/Demo/main.cpp @@ -42,7 +42,7 @@ int main(int argc, char* argv[]) int WinMain(int argc, char* argv[]) #endif { - Nz::Application nazara(argv, argc); + Nz::Application nazara(argc, argv); auto& windowing = nazara.AddComponent(); std::shared_ptr device = Nz::Graphics::Instance()->GetRenderDevice(); diff --git a/examples/Ecs/main.cpp b/examples/Ecs/main.cpp index c3d6dee..74a3efe 100644 --- a/examples/Ecs/main.cpp +++ b/examples/Ecs/main.cpp @@ -40,7 +40,7 @@ int main(int argc, char* argv[]) int WinMain(int argc, char* argv[]) #endif { - Nz::Application nazara(argv, argc); + Nz::Application nazara(argc, argv); auto& windowing = nazara.AddComponent(); std::shared_ptr device = Nz::Graphics::Instance()->GetRenderDevice();