Index: /trunk/src/recompiler/VBoxREMWrapper.cpp
===================================================================
--- /trunk/src/recompiler/VBoxREMWrapper.cpp	(revision 20001)
+++ /trunk/src/recompiler/VBoxREMWrapper.cpp	(revision 20002)
@@ -675,5 +675,5 @@
 static const REMPARMDESC g_aArgsPDMApicGetTPR[] =
 {
-    { REMPARMDESC_FLAGS_INT,        sizeof(PVM), NULL },
+    { REMPARMDESC_FLAGS_INT,        sizeof(PVMCPU), NULL },
     { REMPARMDESC_FLAGS_INT,        sizeof(uint8_t *), NULL },
     { REMPARMDESC_FLAGS_INT,        sizeof(uint8_t *), NULL }
@@ -686,5 +686,5 @@
 static const REMPARMDESC g_aArgsPDMApicSetTPR[] =
 {
-    { REMPARMDESC_FLAGS_INT,        sizeof(PVM), NULL },
+    { REMPARMDESC_FLAGS_INT,        sizeof(PVMCPU), NULL },
     { REMPARMDESC_FLAGS_INT,        sizeof(uint8_t), NULL }
 };
Index: /trunk/src/recompiler/VBoxRecompiler.c
===================================================================
--- /trunk/src/recompiler/VBoxRecompiler.c	(revision 20001)
+++ /trunk/src/recompiler/VBoxRecompiler.c	(revision 20002)
@@ -4079,5 +4079,5 @@
 void cpu_set_apic_tpr(CPUX86State *env, uint8_t val)
 {
-    int rc = PDMApicSetTPR(env->pVM, val);
+    int rc = PDMApicSetTPR(env->pVCpu, val);
     LogFlow(("cpu_set_apic_tpr: val=%#x rc=%Rrc\n", val, rc)); NOREF(rc);
 }
@@ -4086,5 +4086,5 @@
 {
     uint8_t u8;
-    int rc = PDMApicGetTPR(env->pVM, &u8, NULL);
+    int rc = PDMApicGetTPR(env->pVCpu, &u8, NULL);
     if (RT_SUCCESS(rc))
     {
