We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1bd32d commit 83bb843Copy full SHA for 83bb843
gframe/gframe.cpp
@@ -190,9 +190,14 @@ int _tmain(int argc, epro::path_char* argv[]) {
190
return EXIT_FAILURE;
191
}
192
show_changelog = args[LAUNCH_PARAM::CHANGELOG].enabled;
193
-#if !EDOPRO_WINDOWS
+#if EDOPRO_POSIX
194
setlocale(LC_CTYPE, "UTF-8");
195
-#endif //EDOPRO_WINDOWS
+ struct sigaction sa;
196
+ sa.sa_handler = SIG_IGN;
197
+ sigemptyset(&sa.sa_mask);
198
+ sa.sa_flags = 0;
199
+ (void)sigaction(SIGCHLD, &sa, 0);
200
+#endif //EDOPRO_POSIX
201
ygo::ClientUpdater updater(args[LAUNCH_PARAM::OVERRIDE_UPDATE_URL].argument);
202
ygo::gClientUpdater = &updater;
203
std::unique_ptr<ygo::DataHandler> data{ nullptr };
0 commit comments