rsx_methods: fix warning

This commit is contained in:
Nekotekina 2022-05-31 16:55:50 +03:00 committed by Ivan
parent 03df3c5293
commit 76c72351a5
1 changed files with 2 additions and 2 deletions

View File

@ -1740,7 +1740,7 @@ namespace rsx
template<u32 index>
struct driver_flip
{
static void impl(thread* rsx, u32 /*reg*/, u32 arg)
static void impl(thread*, u32 /*reg*/, u32 arg)
{
sys_rsx_context_attribute(0x55555555, 0x102, index, arg, 0, 0);
}
@ -1749,7 +1749,7 @@ namespace rsx
template<u32 index>
struct queue_flip
{
static void impl(thread* rsx, u32 /*reg*/, u32 arg)
static void impl(thread*, u32 /*reg*/, u32 arg)
{
sys_rsx_context_attribute(0x55555555, 0x103, index, arg, 0, 0);
}