Renamed InitCursors into InitVideoCursors to avoid name collisions.
This commit is contained in:
parent
75343648cf
commit
7466c55811
3 changed files with 3 additions and 3 deletions
src
|
@ -102,7 +102,7 @@ global void InitModules(void)
|
|||
{
|
||||
SyncRandSeed=0x87654321;
|
||||
InitIcons();
|
||||
InitCursors();
|
||||
InitVideoCursors();
|
||||
InitUserInterface(RaceWcNames ? RaceWcNames[1] : "oops");
|
||||
InitPlayers();
|
||||
InitMissileTypes();
|
||||
|
|
|
@ -197,7 +197,7 @@ extern void InvalidateAreaAndCheckCursor( int x, int y, int w, int h );
|
|||
extern void InvalidateCursorAreas(void);
|
||||
|
||||
/// Initialize the cursor module
|
||||
extern void InitCursors(void);
|
||||
extern void InitVideoCursors(void);
|
||||
/// Save the cursor definitions
|
||||
extern void SaveCursors(FILE*);
|
||||
/// Cleanup the cursor module
|
||||
|
|
|
@ -995,7 +995,7 @@ global void InvalidateCursorAreas(void)
|
|||
** @todo FIXME: Now max possible memory for OldCursorRectangle,
|
||||
** to be limited to Map?
|
||||
*/
|
||||
global void InitCursors(void)
|
||||
global void InitVideoCursors(void)
|
||||
{
|
||||
if( OldCursorRectangle ) { // memory of possible previous video-setting?
|
||||
free( OldCursorRectangle );
|
||||
|
|
Loading…
Add table
Reference in a new issue