mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- removed the GetConstantInt overloads since it appears they are not needed.
This commit is contained in:
parent
9188dc07a7
commit
c9dad70408
1 changed files with 0 additions and 2 deletions
|
@ -30,8 +30,6 @@ public:
|
|||
|
||||
// Returns the constant register holding the value.
|
||||
int GetConstantInt(int val);
|
||||
int GetConstantInt(size_t val) { return GetConstantInt(int(val)); }
|
||||
int GetConstantInt(unsigned val) { return GetConstantInt(int(val)); }
|
||||
int GetConstantFloat(double val);
|
||||
int GetConstantAddress(void *ptr, VM_ATAG tag);
|
||||
int GetConstantString(FString str);
|
||||
|
|
Loading…
Reference in a new issue