| 3078 | } |
| 3079 | |
| 3080 | Hotspot* ASReadHotspot(int which) { |
| 3081 | if (which < 0 || which >= (int)the_scenegraph->hotspots_.size()) { |
| 3082 | std::string callstack = active_context_stack.top()->GetCallstack(); |
| 3083 | FatalError("Error", "There is no hotspot %d\n Called from:\n%s", which, callstack.c_str()); |
| 3084 | } |
| 3085 | return (Hotspot*)the_scenegraph->hotspots_[which]; |
| 3086 | } |
| 3087 | |
| 3088 | MovementObject* ASReadCharacterID(int which) { |
| 3089 | if (which == -1) { |
nothing calls this directly
no test coverage detected