Skip to content

Commit

Permalink
Android: Specify app ID on about game dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Gamer64ytb authored Aug 16, 2024
1 parent caead23 commit 69f6dd3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class GameAdapter(private val activity: AppCompatActivity, private val inflater:

bottomSheetView.findViewById<TextView>(R.id.about_game_title).text = game.title
bottomSheetView.findViewById<TextView>(R.id.about_game_company).text = game.company
bottomSheetView.findViewById<TextView>(R.id.about_game_id).text = String.format("%016X", game.titleId)
bottomSheetView.findViewById<TextView>(R.id.about_game_id).text = String.format("ID: %016X", game.titleId)
GameIconUtils.loadGameIcon(activity, game, bottomSheetView.findViewById(R.id.game_icon))

bottomSheetView.findViewById<MaterialButton>(R.id.about_game_play).setOnClickListener {
Expand Down

0 comments on commit 69f6dd3

Please sign in to comment.