Renamed InitCursors into InitVideoCursors to avoid name collisions.

This commit is contained in:
johns 2002-03-27 22:41:39 +00:00
parent 75343648cf
commit 7466c55811
3 changed files with 3 additions and 3 deletions

View file

@ -102,7 +102,7 @@ global void InitModules(void)
{
SyncRandSeed=0x87654321;
InitIcons();
InitCursors();
InitVideoCursors();
InitUserInterface(RaceWcNames ? RaceWcNames[1] : "oops");
InitPlayers();
InitMissileTypes();

View file

@ -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

View file

@ -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 );