mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-26 13:37:58 +01:00
Tracy updates + Other stuff (#28661)
* Updates tracy + other stuff * LF that stuff
This commit is contained in:
@@ -81,3 +81,6 @@ site
|
||||
|
||||
# mapmanip-generated DMM files
|
||||
_maps/map_files/**/*.mapmanipout.dmm
|
||||
|
||||
# byond version manager tracking file
|
||||
.byondversion
|
||||
|
||||
@@ -5,9 +5,14 @@
|
||||
// This allows us to get the real details of everything lagging at server start.
|
||||
world.Profile(PROFILE_START)
|
||||
#if defined(ENABLE_BYOND_TRACY)
|
||||
var/tracy_init = CALL_EXT("prof.dll", "init")() // Setup Tracy integration
|
||||
if(tracy_init != "0")
|
||||
CRASH("Tracy init error: [tracy_init]")
|
||||
var/init = call_ext("prof.dll", "init")()
|
||||
|
||||
if(length(init) != 0 && init[1] == ".") // if first character is ., then it returned the output filename
|
||||
world.log << "Tracy output file: [init]"
|
||||
|
||||
else if("0" != init)
|
||||
CRASH("Tracy init error: [init]")
|
||||
|
||||
#endif
|
||||
// After that, the debugger is initialized.
|
||||
// Doing it this early makes it possible to set breakpoints in the New()
|
||||
|
||||
+1
-1
@@ -1752,12 +1752,12 @@
|
||||
#include "code\modules\buildmode\submodes\link.dm"
|
||||
#include "code\modules\buildmode\submodes\mapgen.dm"
|
||||
#include "code\modules\buildmode\submodes\offer.dm"
|
||||
#include "code\modules\buildmode\submodes\portal.dm"
|
||||
#include "code\modules\buildmode\submodes\save.dm"
|
||||
#include "code\modules\buildmode\submodes\say.dm"
|
||||
#include "code\modules\buildmode\submodes\throwing.dm"
|
||||
#include "code\modules\buildmode\submodes\tilt.dm"
|
||||
#include "code\modules\buildmode\submodes\variable_edit.dm"
|
||||
#include "code\modules\buildmode\submodes\portal.dm"
|
||||
#include "code\modules\client\2fa.dm"
|
||||
#include "code\modules\client\client_defines.dm"
|
||||
#include "code\modules\client\client_procs.dm"
|
||||
|
||||
Reference in New Issue
Block a user