Set PStatePointer's TypeTableType in PType::StaticInit()

- It was forgotten about earlier.
This commit is contained in:
Randy Heit 2013-08-23 21:54:35 -05:00
parent 263b160905
commit 27ddaad7ca
1 changed files with 1 additions and 0 deletions

View File

@ -316,6 +316,7 @@ void PType::StaticInit()
RUNTIME_CLASS(PStruct)->TypeTableType = RUNTIME_CLASS(PStruct);
RUNTIME_CLASS(PPrototype)->TypeTableType = RUNTIME_CLASS(PPrototype);
RUNTIME_CLASS(PClass)->TypeTableType = RUNTIME_CLASS(PClass);
RUNTIME_CLASS(PStatePointer)->TypeTableType = RUNTIME_CLASS(PStatePointer);
RUNTIME_CLASS(PFixed)->TypeTableType = RUNTIME_CLASS(PFixed);
RUNTIME_CLASS(PAngle)->TypeTableType = RUNTIME_CLASS(PAngle);