mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-05-31 09:01:22 +00:00
Texture Browser Form: swapped foreground and background colors of texture size labels.
Fixed, Texture Browser Form: well, I broke "Tab" key functionality again (in previous commit)... Maintenance: changed curly braces style to match DB2 one (hopefully not breaking anything in the process...). Maintenance: changed private method names casing to match DB2 one.
This commit is contained in:
parent
99f3ba2844
commit
15b2adfe30
281 changed files with 10033 additions and 5882 deletions
|
@ -470,11 +470,12 @@ namespace CodeImp.DoomBuilder.Data
|
|||
// Error when suspended
|
||||
if (issuspended) throw new Exception("Data reader is suspended");
|
||||
|
||||
//modedef should be in root folder
|
||||
// Modedef should be in root folder
|
||||
string[] files = GetAllFiles("", false);
|
||||
Dictionary<string, Stream> streams = new Dictionary<string, Stream>(StringComparer.Ordinal);
|
||||
|
||||
foreach (string s in files) {
|
||||
foreach (string s in files)
|
||||
{
|
||||
if (s.ToLowerInvariant().IndexOf("modeldef") != -1)
|
||||
streams.Add(s, LoadFile(s));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue