This commit is contained in:
hegyak 2015-11-20 07:26:13 -08:00
commit 37445ccb89
1 changed files with 3 additions and 2 deletions

View File

@ -46,7 +46,7 @@ namespace BizHawk.Common
static void ThreadProc()
{
var di = new DirectoryInfo(Path.GetTempPath());
for (; ; )
for (;;)
{
var fis = di.GetFiles("bizdelete-*");
foreach (var fi in fis)
@ -73,4 +73,5 @@ namespace BizHawk.Common
}
static System.Threading.Thread thread;
}
}
}