aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2020-08-06 18:40:41 -0300
committerGitHub <noreply@github.com>2020-08-06 23:40:41 +0200
commit157ad3f54f6f8b16f9bf4004d3dc954197eaf66a (patch)
tree0e66caf5a1b9ca8d4f77a7a63af026ea450e6427 /Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs
parentee22517d92c48eab9643b6fc8ce4dac2b7e95f57 (diff)
Silence several build warnings (#1428)
* Silence several build warnings * Remove fixed buffers from NVDEC struct * Remove unused field and usings * Fix wrong name * Silence more warning on H264 PictureInfo
Diffstat (limited to 'Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs')
-rw-r--r--Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs b/Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs
index 5db311ae..163a8783 100644
--- a/Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs
+++ b/Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs
@@ -2,9 +2,11 @@
{
struct ReferenceFrame
{
+#pragma warning disable CS0649
public uint Unknown0;
public uint Unknown4;
public uint Unknown8;
public uint UnknownC;
+#pragma warning restore CS0649
}
}