From 05b369d7365696b84e1ecf6ef7a1fd0f05ec0efd Mon Sep 17 00:00:00 2001 From: Willi Schinmeyer Date: Sat, 16 Jun 2012 16:44:09 +0200 Subject: [PATCH] Changed undo function pointer signature to match changed actual function's signature to fix compile error --- include/iundo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/iundo.h b/include/iundo.h index 04a24b9..11dda24 100644 --- a/include/iundo.h +++ b/include/iundo.h @@ -41,7 +41,7 @@ typedef void ( *PFN_UNDOADDENTITY )( entity_t *entity ); //end an entity after the operation is performed typedef void ( *PFN_UNDOENDENTITY )( entity_t *entity ); //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 typedef void ( *PFN_REDO )( void ); //get the undo Id of the next undo (0 if none available)