aboutsummaryrefslogtreecommitdiff
path: root/engines/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/game.h')
-rw-r--r--engines/game.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/game.h b/engines/game.h
index 660a94ad6c..14f9962ce6 100644
--- a/engines/game.h
+++ b/engines/game.h
@@ -39,8 +39,8 @@ struct PlainGameDescriptor {
const char *gameId;
const char *description;
- PlainGameDescriptor() : gameId(nullptr), description(nullptr) {}
- PlainGameDescriptor(const char *id, const char *desc) : gameId(id), description(desc) {}
+ static PlainGameDescriptor empty();
+ static PlainGameDescriptor of(const char *gameId, const char *description);
};
/**