mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Changed undo function pointer signature to match changed actual function's signature to fix compile error
This commit is contained in:
parent
1e7ca049d6
commit
05b369d736
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue