diff --git a/ANX.Framework/NonXNA/PlatformSystem/PlatformSystem.cs b/ANX.Framework/NonXNA/PlatformSystem/PlatformSystem.cs index 7a5b27fd..9ff552d2 100644 --- a/ANX.Framework/NonXNA/PlatformSystem/PlatformSystem.cs +++ b/ANX.Framework/NonXNA/PlatformSystem/PlatformSystem.cs @@ -50,7 +50,7 @@ namespace ANX.Framework.NonXNA.PlatformSystem foreach (Type type in assembly.GetExportedTypes()) #else AssemblyName assemblyName = new AssemblyName(platformAssemblyName); - Assembly assembly = Assembly.Load(assemblyName); + Assembly assembly = Assembly.Load(assemblyName); foreach (Type type in assembly.ExportedTypes) #endif @@ -76,7 +76,7 @@ namespace ANX.Framework.NonXNA.PlatformSystem case PlatformName.PSVita: return prefix + platform.ToString() + suffix; case PlatformName.Windows8: - return prefix + "Metro" + suffix; + return prefix + "Metro"; default: throw new PlatformSystemInstanceException("couldn't solve assembly name for platform '" + platform.ToString() + "'"); }