mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-27 06:02:11 +00:00
e8cda3c9c5
Added: Tab text now looks differently when appropriate script was changed. Added: Script Editor now has it's own status bar. Added: several files can now be opened at once when using "Open File" command. Added: ACS scripts navigator now shows script and function arguments. Changed: when closing a tab, previous tab is selected instead of the first tab. Changed: SCRIPTS lump can't be compiled as a library. Changed: external acs files can only be compiled as libraries. Changed: when an external acs file is marked as #library, it will be saved as [library name].o alongside [filename].acs. Fixed: files opened using "Open File" command were immediately flagged as changed. Fixed: Script Editor was unable to navigate to error location after clicking on the error description when the error was in include file. Updated ZDoom ACC.
13 lines
374 B
INI
13 lines
374 B
INI
|
|
compilers
|
|
{
|
|
// This defines what files a compiler uses
|
|
// The setting named "program" defines what .exe to run
|
|
// The "interface" setting defines what interal interface to use for processing and error feedback
|
|
// All others are the required files (the setting names do not matter)
|
|
zandronum_acc
|
|
{
|
|
interface = "AccCompiler";
|
|
program = "acc.exe";
|
|
}
|
|
}
|