Got rid of errorString. Renumbered error codes. Got rid of error string tables.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@401 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
dsandersoremutah
2006-05-09 22:48:32 +00:00
parent 659322639e
commit 7cb4cf1140
21 changed files with 435 additions and 1180 deletions

View File

@@ -2944,8 +2944,8 @@ RCODE F_LocalRestoreStatus::reportError(
FTXWinSetCursorPos( pWin, 0, 6);
FTXWinClearToEOL( pWin);
FTXWinPrintf( pWin, "Error: %s. Retry (Y/N): ",
F_DbSystem::_errorString( (RCODE)rcErr));
FTXWinPrintf( pWin, "Error: 0x%04X. Retry (Y/N): ",
(unsigned)rcErr);
if( FTXWinInputChar( pWin, &uiChar) != FTXRC_SUCCESS)
{
uiChar = 0;
@@ -5461,8 +5461,8 @@ RetryLoad:
{
if( rc != NE_XFLM_EOF_HIT)
{
pShell->con_printf( "Error importing: %s ... %s\n",
szTmpPath, F_DbSystem::_errorString( rc));
pShell->con_printf( "Error importing: %s ... 0x%04X\n",
szTmpPath, (unsigned)rc);
if( pImportStats)
{