diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 8bdbcd5ce..d2d613f99 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 -------- diff --git a/misc/physfsx.c b/misc/physfsx.c index 30920b836..72730e88a 100644 --- a/misc/physfsx.c +++ b/misc/physfsx.c @@ -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("");