From: SmallJoker Date: Tue, 21 Apr 2015 17:54:14 +0000 (+0200) Subject: Fix crash on startup (Windows) X-Git-Tag: 0.4.13~342 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=17a173f474eed3b43525d669749b4d20a5cd2ec4;p=oweals%2Fminetest.git Fix crash on startup (Windows) --- diff --git a/src/porting.cpp b/src/porting.cpp index 8ea61f7cc..ce35fe577 100644 --- a/src/porting.cpp +++ b/src/porting.cpp @@ -75,8 +75,7 @@ bool * signal_handler_killstatus(void) void sigint_handler(int sig) { - if(g_killed == false) - { + if(!g_killed) { dstream<