(Dimension dim, String pic)
| 115 | ============= |
| 116 | */ |
| 117 | public void Draw_GetPicSize(Dimension dim, String pic) { |
| 118 | |
| 119 | image_t image = Draw_FindPic(pic); |
| 120 | dim.width = (image != null) ? image.width : -1; |
| 121 | dim.height = (image != null) ? image.height : -1; |
| 122 | } |
| 123 | |
| 124 | /* |
| 125 | ============= |
nothing calls this directly
no test coverage detected