Fix ambiguous references

This commit is contained in:
Matt Nadareski
2023-04-17 13:22:35 -04:00
parent 5fce4c84b5
commit 18fee399f4
19 changed files with 35 additions and 35 deletions

View File

@@ -1099,8 +1099,8 @@ namespace SabreTools.DatFiles
protected void EnsureDatabase()
{
// Make sure the file exists
if (!File.Exists(ItemDictionaryFileName))
File.Create(ItemDictionaryFileName);
if (!System.IO.File.Exists(ItemDictionaryFileName))
System.IO.File.Create(ItemDictionaryFileName);
// If we have no database connection, we can't do anything
if (dbc == null)