removed some debug spam, fixed namespaces.

This commit is contained in:
2019-01-27 02:01:13 -06:00
parent 1ae37bb219
commit dbafc989a5
4 changed files with 11 additions and 9 deletions

View File

@@ -1,4 +1,6 @@
namespace RecrownedAthenaeum.ContentSystem.ContentResolvers
using RecrownedAthenaeum.ContentSystem;
namespace RhythmBullet.ContentResolvers
{
internal class FontContentResolver : IContentPathResolver
{
@@ -14,4 +16,4 @@
return rcr.Modify("fonts/" + assetName);
}
}
}
}

View File

@@ -1,6 +1,8 @@
using RecrownedAthenaeum.SpecialTypes;
using RecrownedAthenaeum.ContentSystem;
using RecrownedAthenaeum.SpecialTypes;
using System.Diagnostics;
namespace RecrownedAthenaeum.ContentSystem.ContentResolvers
namespace RhythmBullet.ContentResolvers
{
internal class ResolutionContentResolver : IContentPathResolver
{
@@ -95,6 +97,7 @@ namespace RecrownedAthenaeum.ContentSystem.ContentResolvers
if (updated)
{
bestResolution = ChooseRounded();
Debug.WriteLine("Selected best resolution set: " + bestResolution);
}
return bestResolution + "/" + path;
}