(String name)
| 100 | ============= |
| 101 | */ |
| 102 | public image_t Draw_FindPic(String name) { |
| 103 | if (!name.startsWith("/") && !name.startsWith("\\")) |
| 104 | { |
| 105 | return GL_FindImage(name, it_pic); |
| 106 | } else { |
| 107 | return GL_FindImage(name.substring(1), it_pic); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | |
| 112 | /* |
no test coverage detected