Changed undo function pointer signature to match changed actual function's signature to fix compile error

This commit is contained in:
Willi Schinmeyer 2012-06-16 16:44:09 +02:00
parent 1e7ca049d6
commit 05b369d736
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ typedef void ( *PFN_UNDOADDENTITY )( entity_t *entity );
//end an entity after the operation is performed //end an entity after the operation is performed
typedef void ( *PFN_UNDOENDENTITY )( entity_t *entity ); typedef void ( *PFN_UNDOENDENTITY )( entity_t *entity );
//undo last operation (bSilent == true -> will not print the "undone blah blah message") //undo last operation (bSilent == true -> will not print the "undone blah blah message")
typedef void ( *PFN_UNDO )( unsigned char bSilent ); typedef void ( *PFN_UNDO )( qboolean bSilent );
//redo last undone operation //redo last undone operation
typedef void ( *PFN_REDO )( void ); typedef void ( *PFN_REDO )( void );
//get the undo Id of the next undo (0 if none available) //get the undo Id of the next undo (0 if none available)