diff options
author | erorcun <erayorcunus@gmail.com> | 2020-12-09 01:15:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-09 01:15:20 +0100 |
commit | 6b654094a5299d55a3621a3a23b6dafbb48b78e9 (patch) | |
tree | e9735ff0ce34dbfca24bf6c4fc609cbacaac81f1 /src/control/Pickups.h | |
parent | fix CObject::DeleteAllTempObjectsInArea (diff) | |
parent | don't cast script param to uint8 (diff) | |
download | re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.gz re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.bz2 re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.lz re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.xz re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.zst re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.zip |
Diffstat (limited to 'src/control/Pickups.h')
-rw-r--r-- | src/control/Pickups.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/control/Pickups.h b/src/control/Pickups.h index 95eb6fbf..72a37d99 100644 --- a/src/control/Pickups.h +++ b/src/control/Pickups.h @@ -1,7 +1,7 @@ #pragma once #include "Weapon.h" -enum ePickupType : uint8 +enum ePickupType { PICKUP_NONE = 0, PICKUP_IN_SHOP, @@ -29,7 +29,7 @@ class CPlayerPed; class CPickup { public: - ePickupType m_eType; + uint8 m_eType; bool m_bRemoved; uint16 m_nQuantity; CObject *m_pObject; |