We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cadaf2f commit a3833f5Copy full SHA for a3833f5
1 file changed
src/main.cpp
@@ -278,7 +278,7 @@ struct DeferredObject {
278
279
// ─── Main generation popup ────────────────────────────────────────────────────
280
281
-class AIGeneratorPopup : public Popup<> {
+class AIGeneratorPopup : public Popup {
282
protected:
283
TextInput* m_promptInput = nullptr;
284
CCLabelBMFont* m_statusLabel = nullptr;
@@ -300,7 +300,7 @@ class AIGeneratorPopup : public Popup<> {
300
// ── init ──────────────────────────────────────────────────────────────────
301
302
bool init(LevelEditorLayer* editorLayer) {
303
- if (!Popup<>::init(420.f, 300.f))
+ if (!Popup::init(420.f, 300.f))
304
return false;
305
306
m_editorLayer = editorLayer;
0 commit comments