File tree Expand file tree Collapse file tree 4 files changed +9
-14
lines changed
romsel_aktheme/arm9/source
romsel_r4theme/arm9/source Expand file tree Collapse file tree 4 files changed +9
-14
lines changed Original file line number Diff line number Diff line change @@ -1008,8 +1008,6 @@ bool donorRomMsg(void) {
1008
1008
}
1009
1009
1010
1010
bool checkForCompatibleGame () {
1011
- return true ;
1012
-
1013
1011
bool proceedToLaunch = true ;
1014
1012
1015
1013
/* if (!dsiFeatures() && ms().secondaryDevice) {
@@ -1023,7 +1021,7 @@ bool checkForCompatibleGame() {
1023
1021
}
1024
1022
} */
1025
1023
1026
- /* if (proceedToLaunch && ms().secondaryDevice) {
1024
+ if (ms ().secondaryDevice ) {
1027
1025
// TODO: If the list gets large enough, switch to bsearch().
1028
1026
for (unsigned int i = 0 ; i < sizeof (incompatibleGameListFC)/sizeof (incompatibleGameListFC[0 ]); i++) {
1029
1027
if (memcmp (gameTid[cursorPosOnScreen], incompatibleGameListFC[i], 3 ) == 0 ) {
@@ -1032,7 +1030,7 @@ bool checkForCompatibleGame() {
1032
1030
break ;
1033
1031
}
1034
1032
}
1035
- } */
1033
+ }
1036
1034
1037
1035
/* if (proceedToLaunch) {
1038
1036
// TODO: If the list gets large enough, switch to bsearch().
Original file line number Diff line number Diff line change @@ -1860,8 +1860,6 @@ bool donorRomMsg(const char *filename) {
1860
1860
}
1861
1861
1862
1862
bool checkForCompatibleGame (const char *filename) {
1863
- return true ;
1864
-
1865
1863
bool proceedToLaunch = true ;
1866
1864
1867
1865
/* if (!dsiFeatures() && ms().secondaryDevice) {
@@ -1875,7 +1873,7 @@ bool checkForCompatibleGame(const char *filename) {
1875
1873
}
1876
1874
} */
1877
1875
1878
- /* if (proceedToLaunch && ms().secondaryDevice) {
1876
+ if (ms ().secondaryDevice ) {
1879
1877
// TODO: If the list gets large enough, switch to bsearch().
1880
1878
for (unsigned int i = 0 ; i < sizeof (incompatibleGameListFC)/sizeof (incompatibleGameListFC[0 ]); i++) {
1881
1879
if (memcmp (gameTid[CURPOS], incompatibleGameListFC[i], 3 ) == 0 ) {
@@ -1884,7 +1882,7 @@ bool checkForCompatibleGame(const char *filename) {
1884
1882
break ;
1885
1883
}
1886
1884
}
1887
- } */
1885
+ }
1888
1886
1889
1887
/* if (proceedToLaunch) {
1890
1888
// TODO: If the list gets large enough, switch to bsearch().
Original file line number Diff line number Diff line change @@ -606,8 +606,6 @@ void showLocation(void) {
606
606
}
607
607
608
608
bool checkForCompatibleGame (const char *filename) {
609
- return true ;
610
-
611
609
bool proceedToLaunch = true ;
612
610
613
611
/* if (!dsiFeatures() && ms().secondaryDevice) {
@@ -621,7 +619,7 @@ bool checkForCompatibleGame(const char *filename) {
621
619
}
622
620
} */
623
621
624
- /* if (proceedToLaunch && ms().secondaryDevice) {
622
+ if (ms ().secondaryDevice ) {
625
623
// TODO: If the list gets large enough, switch to bsearch().
626
624
for (unsigned int i = 0 ; i < sizeof (incompatibleGameListFC)/sizeof (incompatibleGameListFC[0 ]); i++) {
627
625
if (memcmp (gameTid, incompatibleGameListFC[i], 3 ) == 0 ) {
@@ -630,7 +628,7 @@ bool checkForCompatibleGame(const char *filename) {
630
628
break ;
631
629
}
632
630
}
633
- } */
631
+ }
634
632
635
633
/* if (proceedToLaunch) {
636
634
// TODO: If the list gets large enough, switch to bsearch().
Original file line number Diff line number Diff line change 4
4
// static const char incompatibleGameListB4DS[][4] = {
5
5
// };
6
6
7
- // static const char incompatibleGameListFC[][4] = {
8
- // };
7
+ static const char incompatibleGameListFC [][4 ] = {
8
+ "AWK" , // Tony Hawk's Downhill Jam
9
+ };
9
10
10
11
// static const char incompatibleGameList[][4] = {
11
12
// };
You can’t perform that action at this time.
0 commit comments