diff --git a/src/game/loadgame.cpp b/src/game/loadgame.cpp
index 540bdf108..45e507614 100644
--- a/src/game/loadgame.cpp
+++ b/src/game/loadgame.cpp
@@ -102,7 +102,7 @@ global void InitModules(void)
 {
     SyncRandSeed=0x87654321;
     InitIcons();
-    InitCursors();
+    InitVideoCursors();
     InitUserInterface(RaceWcNames ? RaceWcNames[1] : "oops");
     InitPlayers();
     InitMissileTypes();
diff --git a/src/include/cursor.h b/src/include/cursor.h
index a56f3087f..4c757ba99 100644
--- a/src/include/cursor.h
+++ b/src/include/cursor.h
@@ -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
diff --git a/src/video/cursor.cpp b/src/video/cursor.cpp
index b6ce97e89..7874d2e05 100644
--- a/src/video/cursor.cpp
+++ b/src/video/cursor.cpp
@@ -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 );