update some strings

This commit is contained in:
dborth 2010-03-17 23:20:08 +00:00
parent 10d80c7d3a
commit 3622168167
3 changed files with 5 additions and 9 deletions

View File

@ -515,7 +515,7 @@ int BrowserLoadFile()
if (SNESROMSize <= 0) if (SNESROMSize <= 0)
{ {
ErrorPrompt("Error loading ROM!"); ErrorPrompt("Error loading game!");
} }
else else
{ {

View File

@ -354,7 +354,7 @@ bool MountDVD(bool silent)
if(silent) if(silent)
break; break;
retry = ErrorPromptRetry("Invalid DVD."); retry = ErrorPromptRetry("Unrecognized DVD format.");
} }
else else
{ {
@ -588,7 +588,6 @@ bool ParseDirEntries()
int int
ParseDirectory(bool waitParse) ParseDirectory(bool waitParse)
{ {
char msg[128];
int retry = 1; int retry = 1;
bool mounted = false; bool mounted = false;
@ -606,8 +605,7 @@ ParseDirectory(bool waitParse)
if(dirIter == NULL) if(dirIter == NULL)
{ {
sprintf(msg, "Error opening %s", browser.dir); retry = ErrorPromptRetry("Error opening directory!");
retry = ErrorPromptRetry(msg);
} }
} }
@ -713,7 +711,7 @@ LoadSzFile(char * filepath, unsigned char * rbuffer)
} }
else else
{ {
ErrorPrompt("Error opening file"); ErrorPrompt("Error opening file!");
} }
// go back to checking if devices were inserted/removed // go back to checking if devices were inserted/removed

View File

@ -191,7 +191,6 @@ void InitializeNetwork(bool silent)
int retry = 1; int retry = 1;
char ip[16]; char ip[16];
char msg[150];
s32 initResult; s32 initResult;
if(!silent) if(!silent)
@ -217,8 +216,7 @@ void InitializeNetwork(bool silent)
if(networkInit || silent) if(networkInit || silent)
break; break;
sprintf(msg, "Unable to initialize network (Error #: %i)", initResult); retry = ErrorPromptRetry("Unable to initialize network!");
retry = ErrorPromptRetry(msg);
} }
// do not automatically attempt a reconnection // do not automatically attempt a reconnection