Very likely fixes the Recent games list(to prevent games from randomly going missing from it). Testing suggests that this could have caused setting-erasure errors before the Recent games error started occurring regularly.

This commit is contained in:
ugetab 2010-04-09 06:58:50 +00:00
parent bad5a79e91
commit 16ae807d6b
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ static void cfg_OldToNew(const CFGSTRUCT *cfgst)
else else
{ {
//string data //string data
if(*(char*)cfgst[x].ptr) if(*(char**)cfgst[x].ptr)
cfgmap[cfgst[x].name] = *(char**)cfgst[x].ptr; cfgmap[cfgst[x].name] = *(char**)cfgst[x].ptr;
else cfgmap[cfgst[x].name] = ""; else cfgmap[cfgst[x].name] = "";
} }