Removed extra semicolons. (#3594)

This commit is contained in:
Nicholas Rodine 2022-08-17 02:05:15 -05:00 committed by GitHub
parent d7ee7cb6db
commit fbdf0aa5c7
6 changed files with 7 additions and 7 deletions

View file

@ -131,7 +131,7 @@ namespace Ryujinx.Graphics.Vulkan
return ShaderKind.GlslFragmentShader;
case ShaderStage.Compute:
return ShaderKind.GlslComputeShader;
};
}
Logger.Debug?.Print(LogClass.Gpu, $"Invalid {nameof(ShaderStage)} enum value: {stage}.");