| 256 | static double sampleRate = 0.0; |
| 257 | |
| 258 | static void initUiIfNeeded() |
| 259 | { |
| 260 | if (globalUI != nullptr) |
| 261 | return; |
| 262 | |
| 263 | if (sampleRate == 0.0) |
| 264 | sampleRate = 44100.0; |
| 265 | |
| 266 | globalUI = new UIDssi(gOscData, gUiTitle, sampleRate); |
| 267 | } |
| 268 | |
| 269 | // ----------------------------------------------------------------------- |
| 270 |
no outgoing calls
no test coverage detected