diff options
author | PsyK0p4T <[email protected]> | 2023-01-16 02:15:24 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-01-16 02:15:24 +0100 |
commit | f471a7e3945330f9445344c6bae3f35b693359c1 (patch) | |
tree | 6bba0f997af21d921d362a639ec1e1a0f96143b3 /Cart_Reader/VBOY.ino | |
parent | ae55f07b2fb32e9e0c359c80ec85c2c7991155d4 (diff) | |
download | cartreader-f471a7e3945330f9445344c6bae3f35b693359c1.tar.gz cartreader-f471a7e3945330f9445344c6bae3f35b693359c1.zip |
Fix game using sram
"Virtual Fishing" moved to carts using sram
Diffstat (limited to 'Cart_Reader/VBOY.ino')
-rw-r--r-- | Cart_Reader/VBOY.ino | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cart_Reader/VBOY.ino b/Cart_Reader/VBOY.ino index b56a636..e81f006 100644 --- a/Cart_Reader/VBOY.ino +++ b/Cart_Reader/VBOY.ino @@ -326,7 +326,6 @@ void getCartInfo_VB() { case 0x5245: // RE = Red Alarm case 0x4833: // H3 = Vertical Force case 0x5642: // VB = Virtual Bowling - case 0x5646: // VF = Virtual Fishing case 0x4A56: // JV = Virtual Lab case 0x5650: // VP = Virtual League Baseball/Virtual Pro Yakyuu '95 cartSize = 0x100000; // 1MB @@ -336,6 +335,7 @@ void getCartInfo_VB() { case 0x4750: // GP = Galactic Pinball case 0x5344: // SD = SD Gundam Dimension War case 0x5442: // TB = Teleroboxer + case 0x5646: // VF = Virtual Fishing cartSize = 0x100000; // 1MB sramSize = 0x2000; // 8KB break; |