Added Setting that prompts compiling upon startup

This commit is contained in:
Maruno17
2023-10-01 18:52:48 +01:00
parent cd32b5e725
commit a6c7e2c1ff
4 changed files with 15 additions and 1 deletions

View File

@@ -1078,7 +1078,7 @@ module Compiler
mustCompile |= (latestTextTime >= latestDataTime)
# Should recompile if holding Ctrl
Input.update
mustCompile = true if Input.press?(Input::CTRL)
mustCompile = true if $full_compile || Input.press?(Input::CTRL)
# Delete old data files in preparation for recompiling
if mustCompile
data_files.each do |filename|