sub_81D1574

This commit is contained in:
PikalaxALT
2018-02-27 08:47:47 -05:00
parent 5162393c16
commit 7f7b182ca4
3 changed files with 36 additions and 38 deletions
+32
View File
@@ -0,0 +1,32 @@
// Includes
#include "global.h"
// Static type declarations
// Static RAM declarations
// Static ROM declarations
// .rodata
// .text
u32 sub_81D1574(u8 *a)
{
switch (*a)
{
case 0:
default:
return 0;
case 1:
case 5:
return 1;
case 2:
return 2;
case 4:
return 3;
case 3:
return 4;
}
}