Skip to content

Commit

Permalink
Merge pull request #8353 from Ebola16/GID
Browse files Browse the repository at this point in the history
Android: Add GameID to Game Settings title
  • Loading branch information
lioncash committed Sep 7, 2019
2 parents a974540 + 817fe9b commit 40fc25b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public Dialog onCreateDialog(Bundle savedInstanceState)
String gameId = getArguments().getString(ARG_GAMEID);
int platform = getArguments().getInt(ARG_PLATFORM);

builder.setTitle(getActivity().getString(R.string.preferences_game_settings))
builder.setTitle(getActivity().getString(R.string.preferences_game_settings) + ": " + gameId)
.setItems(platform == Platform.GAMECUBE.toInt() ?
R.array.gameSettingsMenusGC :
R.array.gameSettingsMenusWii, (dialog, which) ->
Expand Down

0 comments on commit 40fc25b

Please sign in to comment.