mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- Don't use abbreviations in exception descriptions.
SVN r3738 (trunk)
This commit is contained in:
parent
ca2cfb803f
commit
a5d77e6796
1 changed files with 9 additions and 9 deletions
|
@ -704,17 +704,17 @@ HANDLE WriteTextReport ()
|
|||
{ EXCEPTION_ARRAY_BOUNDS_EXCEEDED, "Array Bounds Exceeded" },
|
||||
{ EXCEPTION_BREAKPOINT, "Breakpoint" },
|
||||
{ EXCEPTION_DATATYPE_MISALIGNMENT, "Data Type Misalignment" },
|
||||
{ EXCEPTION_FLT_DENORMAL_OPERAND, "Float: Denormal Operand." },
|
||||
{ EXCEPTION_FLT_DIVIDE_BY_ZERO, "Float: Divide By Zero" },
|
||||
{ EXCEPTION_FLT_INEXACT_RESULT, "Float: Inexact Result" },
|
||||
{ EXCEPTION_FLT_INVALID_OPERATION, "Float: Invalid Operation" },
|
||||
{ EXCEPTION_FLT_OVERFLOW, "Float: Overflow" },
|
||||
{ EXCEPTION_FLT_STACK_CHECK, "Float: Stack Check" },
|
||||
{ EXCEPTION_FLT_UNDERFLOW, "Float: Underflow" },
|
||||
{ EXCEPTION_FLT_DENORMAL_OPERAND, "Floating Point Denormal Operand." },
|
||||
{ EXCEPTION_FLT_DIVIDE_BY_ZERO, "Floating Point Divide By Zero" },
|
||||
{ EXCEPTION_FLT_INEXACT_RESULT, "Floating Point Inexact Result" },
|
||||
{ EXCEPTION_FLT_INVALID_OPERATION, "Floating Point Invalid Operation" },
|
||||
{ EXCEPTION_FLT_OVERFLOW, "Floating Point Overflow" },
|
||||
{ EXCEPTION_FLT_STACK_CHECK, "Floating Point Stack Check" },
|
||||
{ EXCEPTION_FLT_UNDERFLOW, "Floating Point Underflow" },
|
||||
{ EXCEPTION_ILLEGAL_INSTRUCTION, "Illegal Instruction" },
|
||||
{ EXCEPTION_IN_PAGE_ERROR, "In Page Error" },
|
||||
{ EXCEPTION_INT_DIVIDE_BY_ZERO, "Int: Divide By Zero" },
|
||||
{ EXCEPTION_INT_OVERFLOW, "Int: Overflow" },
|
||||
{ EXCEPTION_INT_DIVIDE_BY_ZERO, "Integer Divide By Zero" },
|
||||
{ EXCEPTION_INT_OVERFLOW, "Integer Overflow" },
|
||||
{ EXCEPTION_INVALID_DISPOSITION, "Invalid Disposition" },
|
||||
{ EXCEPTION_NONCONTINUABLE_EXCEPTION, "Noncontinuable Exception" },
|
||||
{ EXCEPTION_PRIV_INSTRUCTION, "Priviledged Instruction" },
|
||||
|
|
Loading…
Reference in a new issue