Small code cleanup.
parent
1125f33675
commit
10cd4cea80
|
@ -56,7 +56,7 @@ build_steamos:
|
||||||
|
|
||||||
build_windows:
|
build_windows:
|
||||||
stage: build
|
stage: build
|
||||||
image: fedora
|
image: fedora:30
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- dnf -y install wine wget p7zip sed dos2unix
|
- dnf -y install wine wget p7zip sed dos2unix
|
||||||
|
@ -107,7 +107,7 @@ build_cmake_linux:
|
||||||
|
|
||||||
build_cmake_windows:
|
build_cmake_windows:
|
||||||
stage: build
|
stage: build
|
||||||
image: fedora
|
image: fedora:30
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- dnf update -y
|
- dnf update -y
|
||||||
|
|
|
@ -100,11 +100,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance
|
||||||
ExitProcess(NULL);
|
ExitProcess(NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ExeFile[0] != NULL && CreateProcessA(ExeFile, ExeCommandLine, NULL, NULL, TRUE, CREATE_SUSPENDED, NULL, ExeRunDir, &info, &processInfo))
|
if (!ExeFile[0] || !CreateProcessA(ExeFile, ExeCommandLine, NULL, NULL, TRUE, CREATE_SUSPENDED, NULL, ExeRunDir, &info, &processInfo))
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
MessageBoxA(NULL, "Unable to load the requested EXE file.", "ColdClientLoader", MB_ICONERROR);
|
MessageBoxA(NULL, "Unable to load the requested EXE file.", "ColdClientLoader", MB_ICONERROR);
|
||||||
ExitProcess(NULL);
|
ExitProcess(NULL);
|
||||||
|
|
Loading…
Reference in New Issue