[Scummvm-git-logs] scummvm master -> 1b5de541b8830e3a48ca1215af3d9b4e16f317c0
bluegr
noreply at scummvm.org
Thu May 15 08:45:01 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
1b5de541b8 NANCY: Remove superfluous semicolons
Commit: 1b5de541b8830e3a48ca1215af3d9b4e16f317c0
https://github.com/scummvm/scummvm/commit/1b5de541b8830e3a48ca1215af3d9b4e16f317c0
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2025-05-15T11:44:46+03:00
Commit Message:
NANCY: Remove superfluous semicolons
Changed paths:
engines/nancy/action/puzzle/assemblypuzzle.h
engines/nancy/action/puzzle/bballpuzzle.h
engines/nancy/action/puzzle/collisionpuzzle.h
engines/nancy/action/puzzle/cubepuzzle.h
engines/nancy/action/puzzle/mazechasepuzzle.h
engines/nancy/action/puzzle/mouselightpuzzle.h
diff --git a/engines/nancy/action/puzzle/assemblypuzzle.h b/engines/nancy/action/puzzle/assemblypuzzle.h
index 6b301b67015..c75400f42d3 100644
--- a/engines/nancy/action/puzzle/assemblypuzzle.h
+++ b/engines/nancy/action/puzzle/assemblypuzzle.h
@@ -46,7 +46,7 @@ public:
void handleInput(NancyInput &input) override;
protected:
- Common::String getRecordTypeName() const override { return "AssemblyPuzzle"; };
+ Common::String getRecordTypeName() const override { return "AssemblyPuzzle"; }
bool isViewportRelative() const override { return true; }
void rotateBase(bool ccw);
diff --git a/engines/nancy/action/puzzle/bballpuzzle.h b/engines/nancy/action/puzzle/bballpuzzle.h
index 6adbf6dce2b..5647d735ad6 100644
--- a/engines/nancy/action/puzzle/bballpuzzle.h
+++ b/engines/nancy/action/puzzle/bballpuzzle.h
@@ -40,7 +40,7 @@ public:
void handleInput(NancyInput &input) override;
protected:
- Common::String getRecordTypeName() const override { return "BBallPuzzle"; };
+ Common::String getRecordTypeName() const override { return "BBallPuzzle"; }
bool isViewportRelative() const override { return true; }
Common::Path _imageName;
diff --git a/engines/nancy/action/puzzle/collisionpuzzle.h b/engines/nancy/action/puzzle/collisionpuzzle.h
index 485d5489721..db6b3024fac 100644
--- a/engines/nancy/action/puzzle/collisionpuzzle.h
+++ b/engines/nancy/action/puzzle/collisionpuzzle.h
@@ -66,7 +66,7 @@ protected:
bool isViewportRelative() const override { return true; }
};
- Common::String getRecordTypeName() const override { return _puzzleType == kCollision ? "CollisionPuzzle" : "TileMovePuzzle"; };
+ Common::String getRecordTypeName() const override { return _puzzleType == kCollision ? "CollisionPuzzle" : "TileMovePuzzle"; }
bool isViewportRelative() const override { return true; }
Common::Point movePiece(uint pieceID, WallType direction);
diff --git a/engines/nancy/action/puzzle/cubepuzzle.h b/engines/nancy/action/puzzle/cubepuzzle.h
index ec52eb98120..7b4bc26288d 100644
--- a/engines/nancy/action/puzzle/cubepuzzle.h
+++ b/engines/nancy/action/puzzle/cubepuzzle.h
@@ -44,7 +44,7 @@ public:
void handleInput(NancyInput &input) override;
protected:
- Common::String getRecordTypeName() const override { return "CubePuzzle"; };
+ Common::String getRecordTypeName() const override { return "CubePuzzle"; }
bool isViewportRelative() const override { return true; }
void rotateBase(int dir);
diff --git a/engines/nancy/action/puzzle/mazechasepuzzle.h b/engines/nancy/action/puzzle/mazechasepuzzle.h
index f7d3ccb6256..b154d319e2f 100644
--- a/engines/nancy/action/puzzle/mazechasepuzzle.h
+++ b/engines/nancy/action/puzzle/mazechasepuzzle.h
@@ -60,7 +60,7 @@ protected:
bool isViewportRelative() const override { return true; }
};
- Common::String getRecordTypeName() const override { return "MazeChasePuzzle"; };
+ Common::String getRecordTypeName() const override { return "MazeChasePuzzle"; }
bool isViewportRelative() const override { return true; }
Common::Rect getScreenPosition(Common::Point gridPos);
diff --git a/engines/nancy/action/puzzle/mouselightpuzzle.h b/engines/nancy/action/puzzle/mouselightpuzzle.h
index 198efe12d48..96bb3cd885b 100644
--- a/engines/nancy/action/puzzle/mouselightpuzzle.h
+++ b/engines/nancy/action/puzzle/mouselightpuzzle.h
@@ -45,7 +45,7 @@ public:
void handleInput(NancyInput &input) override;
protected:
- Common::String getRecordTypeName() const override { return "MouseLightPuzzle"; };
+ Common::String getRecordTypeName() const override { return "MouseLightPuzzle"; }
bool isViewportRelative() const override { return true; }
Common::Path _imageName;
More information about the Scummvm-git-logs
mailing list