From: hgn Date: Tue, 17 Jun 2025 18:36:29 +0000 (+0100) Subject: couple skalcssd X-Git-Url: https://harrygodden.com/git/?a=commitdiff_plain;h=d48f4c3406d69a0b722ce9609df491b508619dd7;p=carveJwlIkooP6JGAAIwe30JlM.git couple skalcssd --- diff --git a/content_skaterift/maps/dev_heaven/main.mdl b/content_skaterift/maps/dev_heaven/main.mdl index f4d8b84..4e7c19c 100644 Binary files a/content_skaterift/maps/dev_heaven/main.mdl and b/content_skaterift/maps/dev_heaven/main.mdl differ diff --git a/laptop_test b/laptop_test new file mode 100644 index 0000000..6c266c0 Binary files /dev/null and b/laptop_test differ diff --git a/src/ent_npc.c b/src/ent_npc.c index 5944379..973468d 100644 --- a/src/ent_npc.c +++ b/src/ent_npc.c @@ -111,6 +111,13 @@ static *_sub_contexts[] = { NULL, NULL }, } }, + { + "heaven:nogo", .subtitles = (const cs_subtitle[]) + { + { "a1", KCOL_JESUS "Select a character & board first..!" }, + { NULL, NULL }, + } + }, /* HUB world */ { diff --git a/src/gameserver.c b/src/gameserver.c index bb42a4a..32c4fb6 100644 --- a/src/gameserver.c +++ b/src/gameserver.c @@ -35,6 +35,12 @@ static u64 const k_steamid_max = 0xffffffffffffffff; ISteamNetworkingSockets *hSteamNetworkingSockets; ISteamNetworkingUtils *hSteamNetworkingUtils; +static void segvhandler( int signum ) +{ + fflush(NULL); + abort(); +} + static void inthandler( int signum ) { sig_stop = 3; @@ -895,6 +901,7 @@ int main( int argc, const char *argv[] ) signal( SIGINT, inthandler ); signal( SIGQUIT, inthandler ); signal( SIGPIPE, SIG_IGN ); + signal( SIGSEGV, segvhandler ); { _vg_opt_init( argc, argv );