1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 12:33:17 +01:00

Remove unused variables

This commit is contained in:
Ted John
2016-12-08 10:44:16 +00:00
parent c872053fdd
commit 1fc287ec4a

View File

@@ -802,7 +802,6 @@ static void window_title_editor_scrollpaint_saves(rct_window *w, rct_drawpixelin
int x = 0;
int y = 0;
bool inTitle = ((gScreenFlags & SCREEN_FLAGS_TITLE_DEMO) == SCREEN_FLAGS_TITLE_DEMO);
for (int i = 0; i < (int)_editingTitleSequence->NumSaves; i++, y += ROW_HEIGHT) {
bool selected = false;
bool hover = false;
@@ -839,7 +838,6 @@ static void window_title_editor_scrollpaint_commands(rct_window *w, rct_drawpixe
int x = 0;
int y = 0;
bool inTitle = ((gScreenFlags & SCREEN_FLAGS_TITLE_DEMO) == SCREEN_FLAGS_TITLE_DEMO);
for (int i = 0; i < (int)_editingTitleSequence->NumCommands; i++, y += ROW_HEIGHT) {
TitleCommand * command = &_editingTitleSequence->Commands[i];
bool selected = false;