Print emptry line no matter FindPatchOffset succeeds or not
This commit is contained in:
parent
e81e0f0813
commit
bf2fb47a3a
@ -202,15 +202,15 @@ int _tmain(int argc, PTSTR argv[]) {
|
||||
if (pSolution0.GetHandle()->FindPatchOffset() == false) {
|
||||
PRINT_MESSAGE_LITERAL("MESSAGE: PatchSolution0 will be omitted.");
|
||||
pSolution0.Release();
|
||||
} else {
|
||||
PRINT_MESSAGE_LITERAL("");
|
||||
}
|
||||
PRINT_MESSAGE_LITERAL("");
|
||||
} catch (Exception& e) {
|
||||
ExceptionReport(e);
|
||||
return 0;
|
||||
}
|
||||
} else {
|
||||
PRINT_MESSAGE_LITERAL("MESSAGE: PatchSolution0 will be omitted.");
|
||||
PRINT_MESSAGE_LITERAL("");
|
||||
}
|
||||
|
||||
if (pLibccDLL.IsValid()) {
|
||||
@ -220,27 +220,24 @@ int _tmain(int argc, PTSTR argv[]) {
|
||||
if (pSolution3.GetHandle()->FindPatchOffset() == false) {
|
||||
PRINT_MESSAGE_LITERAL("MESSAGE: PatchSolution3 will be omitted.");
|
||||
pSolution3.Release();
|
||||
} else {
|
||||
PRINT_MESSAGE_LITERAL("");
|
||||
}
|
||||
PRINT_MESSAGE_LITERAL("");
|
||||
|
||||
pSolution2.TakeHoldOf(new PatchSolution2());
|
||||
pSolution2.GetHandle()->SetFile(pLibccDLL);
|
||||
if (pSolution2.GetHandle()->FindPatchOffset() == false) {
|
||||
PRINT_MESSAGE_LITERAL("MESSAGE: PatchSolution2 will be omitted.");
|
||||
pSolution2.Release();
|
||||
} else {
|
||||
PRINT_MESSAGE_LITERAL("");
|
||||
}
|
||||
PRINT_MESSAGE_LITERAL("");
|
||||
|
||||
pSolution1.TakeHoldOf(new PatchSolution1());
|
||||
pSolution1.GetHandle()->SetFile(pLibccDLL);
|
||||
if (pSolution1.GetHandle()->FindPatchOffset() == false) {
|
||||
PRINT_MESSAGE_LITERAL("MESSAGE: PatchSolution1 will be omitted.");
|
||||
pSolution2.Release();
|
||||
} else {
|
||||
PRINT_MESSAGE_LITERAL("");
|
||||
}
|
||||
PRINT_MESSAGE_LITERAL("");
|
||||
} catch (Exception& e) {
|
||||
ExceptionReport(e);
|
||||
return 0;
|
||||
@ -249,6 +246,7 @@ int _tmain(int argc, PTSTR argv[]) {
|
||||
PRINT_MESSAGE_LITERAL("MESSAGE: PatchSolution3 will be omitted.");
|
||||
PRINT_MESSAGE_LITERAL("MESSAGE: PatchSolution2 will be omitted.");
|
||||
PRINT_MESSAGE_LITERAL("MESSAGE: PatchSolution1 will be omitted.");
|
||||
PRINT_MESSAGE_LITERAL("");
|
||||
}
|
||||
|
||||
if (pSolution0.IsValid() == false)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user