aboutsummaryrefslogtreecommitdiff
path: root/engines/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/game.cpp')
-rw-r--r--engines/game.cpp14
1 files changed, 3 insertions, 11 deletions
diff --git a/engines/game.cpp b/engines/game.cpp
index b706e1d976..b90381d2d3 100644
--- a/engines/game.cpp
+++ b/engines/game.cpp
@@ -49,18 +49,10 @@ PlainGameDescriptor PlainGameDescriptor::of(const char *gameId, const char *desc
return pgd;
}
-QualifiedGameDescriptor::QualifiedGameDescriptor() :
- PlainGameDescriptor() {
- engineId = nullptr;
- gameId = nullptr;
- description = nullptr;
-}
-
QualifiedGameDescriptor::QualifiedGameDescriptor(const char *engine, const PlainGameDescriptor &pgd) :
- PlainGameDescriptor() {
- engineId = engine;
- gameId = pgd.gameId;
- description = pgd.description;
+ engineId(engine),
+ gameId(pgd.gameId),
+ description(pgd.description) {
}
DetectedGame::DetectedGame() :