From 3b7a2d09b0ec415b37de98e3c67b5e9f87f3083f Mon Sep 17 00:00:00 2001 From: NinjaCheetah <58050615+NinjaCheetah@users.noreply.github.com> Date: Fri, 26 Apr 2024 21:34:40 -0400 Subject: [PATCH] Corrected small error in tmd.py, GameChannel is the "correct" name --- src/libWiiPy/tmd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libWiiPy/tmd.py b/src/libWiiPy/tmd.py index 54cbb07..4f78e46 100644 --- a/src/libWiiPy/tmd.py +++ b/src/libWiiPy/tmd.py @@ -257,7 +257,7 @@ class TMD: Gets the type of the TMD's associated title. Can be one of several possible values: - 'System', 'Game', 'Channel', 'SystemChannel', 'GameWithChannel', or 'HiddenChannel' + 'System', 'Game', 'Channel', 'SystemChannel', 'GameChannel', or 'HiddenChannel' Returns ------- @@ -275,7 +275,7 @@ class TMD: case '00010002': return "SystemChannel" case '00010004': - return "GameWithChannel" + return "GameChannel" case '00010005': return "DLC" case '00010008':