mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-24 15:24:30 +01:00
Fix: TitleSequence spelling errors
```c++ bool TileSequenceSave(TitleSequence * seq); bool TileSequenceAddPark(TitleSequence * seq, const utf8 * path, const utf8 * name); bool TileSequenceRenamePark(TitleSequence * seq, size_t index, const utf8 * name); ``` Renamed to: ```c++ bool TitleSequenceSave(TitleSequence * seq); bool TitleSequenceAddPark(TitleSequence * seq, const utf8 * path, const utf8 * name); bool TitleSequenceRenamePark(TitleSequence * seq, size_t index, const utf8 * name); ```
This commit is contained in:
committed by
Michael Steenbeek
parent
691fb3ab51
commit
74f1eb39a8
@@ -297,9 +297,9 @@ static void window_title_command_editor_mouseup(rct_window *w, rct_widgetindex w
|
||||
_sequence->Commands[insertIndex] = command;
|
||||
} else {
|
||||
_sequence->Commands[_window_title_command_editor_index] = command;
|
||||
TileSequenceSave(_sequence);
|
||||
TitleSequenceSave(_sequence);
|
||||
}
|
||||
TileSequenceSave(_sequence);
|
||||
TitleSequenceSave(_sequence);
|
||||
|
||||
rct_window *title_editor_w = window_find_by_class(WC_TITLE_EDITOR);
|
||||
if (title_editor_w != nullptr) {
|
||||
|
||||
Reference in New Issue
Block a user