1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-01 19:45:35 +00:00

missing ; added

This commit is contained in:
Aleksandar Jovanov 2012-04-08 13:28:34 +02:00
parent c589cbd4ff
commit 23cc1d17ca

View file

@ -3,9 +3,9 @@
enum DrawState
{
DrawState_Weapon,
DrawState_Spell,
DrawState_Nothing
}
DrawState_Weapon = 0,
DrawState_Spell = 1,
DrawState_Nothing = 2,
};
#endif