aboutsummaryrefslogtreecommitdiff
path: root/FIFO.h
diff options
context:
space:
mode:
Diffstat (limited to 'FIFO.h')
-rw-r--r--FIFO.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/FIFO.h b/FIFO.h
index b0f4182..727cc23 100644
--- a/FIFO.h
+++ b/FIFO.h
@@ -47,7 +47,7 @@ public:
}
- void Write(u32 val)
+ void Write(T& val)
{
if (IsFull()) return;
@@ -60,9 +60,9 @@ public:
NumOccupied++;
}
- T Read()
+ T& Read()
{
- T ret = Entries[ReadPos];
+ T& ret = Entries[ReadPos];
if (IsEmpty())
return ret;