# | Line 3 | Line 3 | |
---|---|---|
3 | #include <cstring> | |
4 | ||
5 | #include "Globals.hpp" | |
6 | + | #include "simError.h" |
7 | ||
8 | /* | |
9 | * The following section lists all of the defined tokens for the | |
# | Line 793 | Line 794 | int Globals::hash( char* text ){ | |
794 | ||
795 | // if the key is less than zero, we've had an overflow error | |
796 | ||
797 | < | fprintf( stderr, |
797 | > | sprintf( painCave.errMsg, |
798 | "There has been an overflow error in the Globals' hash key."); | |
799 | < | exit(0); |
799 | > | painCave.isFatal = 1; |
800 | > | simError(); |
801 | } | |
802 | ||
803 | return key; | |
# | Line 812 | Line 814 | void Globals::addHash( char* text, int token ){ | |
814 | key = hash( text ); | |
815 | the_element->setNext( command_table[key] ); | |
816 | command_table[key] = the_element; | |
817 | < | }; |
817 | > | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |