Changed place on WC_MUSIC_CREDITS and WC_PUBLISHER_CREDITS.

This commit is contained in:
hexdec 2014-09-11 18:55:19 +02:00
parent e0cb2e6abf
commit ac7c204284
2 changed files with 4 additions and 4 deletions

View File

@ -330,8 +330,8 @@ enum {
WC_TOOLTIP = 5,
WC_DROPDOWN = 6,
WC_ABOUT = 8,
WC_MUSIC_CREDITS = 9,
WC_PUBLISHER_CREDITS = 10,
WC_PUBLISHER_CREDITS = 9,
WC_MUSIC_CREDITS = 10,
WC_ERROR = 11,
WC_RIDE = 12,
WC_RIDE_CONSTRUCTION = 13,

View File

@ -86,7 +86,7 @@ void window_music_credits_open()
rct_window* window;
// Check if window is already open
window = window_bring_to_front_by_id(WC_PUBLISHER_CREDITS, 0);
window = window_bring_to_front_by_id(WC_MUSIC_CREDITS, 0);
if (window != NULL)
return;
@ -96,7 +96,7 @@ void window_music_credits_open()
510,
314,
(uint32*)window_music_credits_events,
WC_PUBLISHER_CREDITS,
WC_MUSIC_CREDITS,
0
);