Skip to content

Commit

Permalink
added force progressive fix for Capcom vs. SNK 2 EO NTSC-J
Browse files Browse the repository at this point in the history
  • Loading branch information
FIX94 committed Mar 12, 2018
1 parent a5b643b commit 19bb71c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/include/NintendontVersion.h
Expand Up @@ -2,7 +2,7 @@
#define __NINTENDONT_VERSION_H__

#define NIN_MAJOR_VERSION 5
#define NIN_MINOR_VERSION 481
#define NIN_MINOR_VERSION 482

#define NIN_VERSION ((NIN_MAJOR_VERSION << 16) | NIN_MINOR_VERSION)

Expand Down
8 changes: 6 additions & 2 deletions kernel/Patch.c
Expand Up @@ -3,7 +3,7 @@
Nintendont (Kernel) - Playing Gamecubes in Wii mode on a Wii U
Copyright (C) 2013 crediar
Copyright (C) 2014 - 2016 FIX94
Copyright (C) 2014 - 2018 FIX94
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
Expand Down Expand Up @@ -3603,7 +3603,11 @@ void DoPatches( char *Buffer, u32 Length, u32 DiscOffset )
if( TITLE_ID == 0x47454F ) // Capcom vs. SNK 2 EO
{
//fix for force progressive
if(write32A(0x1137C, 0x60000000, 0xB0010010, 0))
if(write32A(0x11224, 0x60000000, 0xB0010010, 0))
{
dbgprintf("Patch:Patched Capcom vs. SNK 2 EO NTSC-J\r\n");
}
else if(write32A(0x1137C, 0x60000000, 0xB0010010, 0))
{
dbgprintf("Patch:Patched Capcom vs. SNK 2 EO NTSC-U\r\n");
}
Expand Down
Binary file modified loader/loader.dol
Binary file not shown.

0 comments on commit 19bb71c

Please sign in to comment.