Fixed typo

This commit is contained in:
zicodxx 2011-07-04 21:46:14 +02:00
parent dc0400205b
commit 73776303f8
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@ D2X-Rebirth Changelog
20110704
--------
main/game.c, main/gamerend.c: Only call show_netplayerinfo() if GM_MULTI is set and reset netplayerinfo_on in game_setup()
misc/physfsx.c: Fixed typo
20110702
--------

View file

@ -214,7 +214,7 @@ void PHYSFSX_listSearchPathContent()
con_printf(CON_DEBUG, "PHYSFS: Listing contents of Search Path.\n");
list = PHYSFS_getSearchPath();
for (i = list; *i != NULL; i++)
con_printf(CON_DEBUG, "PHYSFS: [%s] is in the Search Sath.\n", *i);
con_printf(CON_DEBUG, "PHYSFS: [%s] is in the Search Path.\n", *i);
PHYSFS_freeList(list);
list = PHYSFS_enumerateFiles("");