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:
MaxED 2014-12-03 23:15:26 +00:00
parent 99f3ba2844
commit 15b2adfe30
281 changed files with 10033 additions and 5882 deletions

View file

@ -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));
}