diff --git a/src/android/app/src/main/java/org/citra/citra_emu/adapters/GameAdapter.kt b/src/android/app/src/main/java/org/citra/citra_emu/adapters/GameAdapter.kt
index cc0a2b750..0b178cbd6 100644
--- a/src/android/app/src/main/java/org/citra/citra_emu/adapters/GameAdapter.kt
+++ b/src/android/app/src/main/java/org/citra/citra_emu/adapters/GameAdapter.kt
@@ -148,14 +148,14 @@ class GameAdapter(private val activity: AppCompatActivity) :
             } else {
                 View.VISIBLE
             }
-            binding.textCompany.visibility = if (game.company.isEmpty()) {
+            binding.textGameId.visibility = if (game.titleId == 0L) {
                 View.GONE
             } else {
                 View.VISIBLE
             }
 
             binding.textGameTitle.text = game.title
-            binding.textCompany.text = game.company
+            binding.textGameId.text = String.format("ID: %016X", game.titleId)
             binding.textFilename.text = game.filename
 
             val backgroundColorId =
@@ -178,8 +178,8 @@ class GameAdapter(private val activity: AppCompatActivity) :
                     binding.textGameTitle.ellipsize = TextUtils.TruncateAt.MARQUEE
                     binding.textGameTitle.isSelected = true
 
-                    binding.textCompany.ellipsize = TextUtils.TruncateAt.MARQUEE
-                    binding.textCompany.isSelected = true
+                    binding.textGameId.ellipsize = TextUtils.TruncateAt.MARQUEE
+                    binding.textGameId.isSelected = true
 
                     binding.textFilename.ellipsize = TextUtils.TruncateAt.MARQUEE
                     binding.textFilename.isSelected = true
diff --git a/src/android/app/src/main/res/layout/card_game.xml b/src/android/app/src/main/res/layout/card_game.xml
index 6b20567cf..88c77fd30 100644
--- a/src/android/app/src/main/res/layout/card_game.xml
+++ b/src/android/app/src/main/res/layout/card_game.xml
@@ -52,7 +52,7 @@
                 tools:text="The Legend of Zelda\nOcarina of Time 3D" />
 
             <TextView
-                android:id="@+id/text_company"
+                android:id="@+id/text_game_id"
                 style="@style/TextAppearance.Material3.BodySmall"
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
@@ -61,7 +61,7 @@
                 android:marqueeRepeatLimit="marquee_forever"
                 android:ellipsize="none"
                 android:requiresFadingEdge="horizontal"
-                tools:text="Nintendo" />
+                tools:text="0004000000033400" />
 
             <TextView
                 android:id="@+id/text_filename"