From d8d51daacba8cd6c129d8e9390aa92047634df32 Mon Sep 17 00:00:00 2001 From: Elias Daler Date: Tue, 21 Jan 2025 18:38:20 +0100 Subject: [PATCH] Fix compilation error for gpu.chain(ot) --- src/mips/psyqo/gpu.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mips/psyqo/gpu.hh b/src/mips/psyqo/gpu.hh index 1615805e9..9a6f8eae0 100644 --- a/src/mips/psyqo/gpu.hh +++ b/src/mips/psyqo/gpu.hh @@ -351,8 +351,8 @@ class GPU { * * @param table The ordering table to chain. */ - template - void chain(OrderingTable &table) { + template + void chain(OrderingTable &table) { chain(&table.m_table[N], &table.m_table[0], 0); scheduleOTC(&table.m_table[N], N + 1); }