(int x, int y, int w, int h, String title)
| 125 | this(x, y, w, h, title, true); |
| 126 | } |
| 127 | |
| 128 | public Window(int x, int y, int w, int h, String title, boolean permitRetina) { |
| 129 | |
| 130 | // work around OS X window opening issue |
| 131 | if (Main.os == Main.OS.mac) { |
| 132 | // w = w - 1; |
nothing calls this directly
no test coverage detected