Reverted change where flags param was removed on PushCellByRef and PushFloatByRef. Instead set the param to a default value of SM_PARAM_COPYBACK. (DS, how dare you!)
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40591
This commit is contained in:
@@ -70,7 +70,7 @@ namespace SourcePawn
|
||||
* @param flags Copy-back flags.
|
||||
* @return Error code, if any.
|
||||
*/
|
||||
virtual int PushCellByRef(cell_t *cell) =0;
|
||||
virtual int PushCellByRef(cell_t *cell, int flags=SM_PARAM_COPYBACK) =0;
|
||||
|
||||
/**
|
||||
* @brief Pushes a float onto the current call.
|
||||
@@ -91,7 +91,7 @@ namespace SourcePawn
|
||||
& @param flags Copy-back flags.
|
||||
* @return Error code, if any.
|
||||
*/
|
||||
virtual int PushFloatByRef(float *number) =0;
|
||||
virtual int PushFloatByRef(float *number, int flags=SM_PARAM_COPYBACK) =0;
|
||||
|
||||
/**
|
||||
* @brief Pushes an array of cells onto the current call.
|
||||
|
||||
Reference in New Issue
Block a user