Skip to content

Commit 6b8ca1d

Browse files
committed
Revert "Fix format"
This reverts commit 0954249.
1 parent b29879a commit 6b8ca1d

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

Source/Managers/MovableMan.h

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -489,12 +489,7 @@ namespace RTE {
489489

490490
/// Returns the next unique id for MO's and increments unique ID counter
491491
/// @return Returns the next unique id.
492-
long GetNextUniqueID() {
493-
if (m_ShouldPersistUniqueIDs) {
494-
return 0;
495-
}
496-
return ++m_UniqueIDCounter;
497-
}
492+
long GetNextUniqueID() { if (m_ShouldPersistUniqueIDs) { return 0; } return ++m_UniqueIDCounter; }
498493

499494
/// Returns the max unique id for MO's
500495
/// @return Returns the current max unique id.

Source/Menus/SaveLoadMenuGUI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ void SaveLoadMenuGUI::PopulateSaveGamesList() {
102102

103103
std::string originalScenePresetName;
104104
while (reader.NextProperty()) {
105-
// This is a bit unsafe because it skips properties, but meh, doesn't matter as long as Activity and OriginalScenePresetName are first
105+
// This is a bit unsafe because it skips properties, but meh, doesn't matter as long as Activity and OriginalScenePresetName are first
106106
std::string propName = reader.ReadPropName();
107107
if (propName == "Activity") {
108108
reader >> activity;

0 commit comments

Comments
 (0)