aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/pica.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/pica.h')
-rw-r--r--src/video_core/pica.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h
index 24b39a3a..0e231c6c 100644
--- a/src/video_core/pica.h
+++ b/src/video_core/pica.h
@@ -161,6 +161,8 @@ ASSERT_REG_POSITION(vertex_descriptor, 0x200);
// The total number of registers is chosen arbitrarily, but let's make sure it's not some odd value anyway.
static_assert(sizeof(Regs) == 0x300 * sizeof(u32), "Invalid total size of register set");
+extern Regs registers; // TODO: Not sure if we want to have one global instance for this
+
struct float24 {
static float24 FromFloat32(float val) {