protocol: Make translation-unit only variables static

This commit is contained in:
Lioncash 2015-05-14 21:14:25 -04:00
parent 4c0b428cde
commit 24014cd41f

View File

@ -20,10 +20,10 @@ extern u8* bottomScreen;
int CartID = -1; int CartID = -1;
u32 CartType = 0; u32 CartType = 0;
int A0_Response = -1;
u32 rand1 = 0; static int A0_Response = -1;
u32 rand2 = 0; static u32 rand1 = 0;
static u32 rand2 = 0;
u32 BSWAP32(u32 val) { u32 BSWAP32(u32 val) {
return (((val >> 24) & 0xFF)) | return (((val >> 24) & 0xFF)) |