This commit is contained in:
2025-06-27 07:28:16 -05:00
2 changed files with 1 additions and 2 deletions

View File

@ -117,7 +117,7 @@ int main(int argc,char** argv)
auto path = Environment::GetRealExecutablePath(args[0]); auto path = Environment::GetRealExecutablePath(args[0]);
Platform::Process p(path.ToString(),args); Platform::Process p(path.ToString(),args);
if (p.Start()) if (p.Start())
p.WaitForExit(); p.WaitForExit();
else else
std::cout << "Failed To Run Process: " << path.ToString() << std::endl; std::cout << "Failed To Run Process: " << path.ToString() << std::endl;
} }

View File

@ -3,7 +3,6 @@
#include "TessesFramework/Platform/Environment.hpp" #include "TessesFramework/Platform/Environment.hpp"
#include <iostream> #include <iostream>
#if defined(_WIN32) #if defined(_WIN32)
extern "C" { extern "C" {
#include <windows.h> #include <windows.h>