pokeemerald/src/match_call.c

33 lines
419 B
C
Raw Normal View History

2018-02-27 14:47:47 +01:00
// 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;
}
}