mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Revise the error message for the default case in VM_Execute()
git-svn-id: https://svn.eduke32.com/eduke32@6326 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
a9e513ecaf
commit
3b1cf74fea
1 changed files with 5 additions and 6 deletions
|
@ -5779,13 +5779,12 @@ finish_qsprintf:
|
|||
insptr = (intptr_t *)(tw + apScript);
|
||||
continue;
|
||||
|
||||
default:
|
||||
default: // you aren't supposed to be here!
|
||||
VM_ScriptInfo(insptr, 64);
|
||||
|
||||
G_GameExit("An error has occurred in the EDuke32 virtual machine.\n\n"
|
||||
"If you are an end user, please e-mail the file eduke32.log\n"
|
||||
"along with links to any mods you're using to terminx@gmail.com.\n\n"
|
||||
"If you are a mod developer, please attach all of your CON files\n"
|
||||
G_GameExit("An error has occurred in the " APPNAME " virtual machine.\n\n"
|
||||
"If you are an end user, please e-mail the file " APPBASENAME ".log\n"
|
||||
"along with links to any mods you're using to richard@voidpoint.com.\n\n"
|
||||
"If you are a developer, please attach all of your script files\n"
|
||||
"along with instructions on how to reproduce this error.\n\n"
|
||||
"Thank you!");
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue