From 24014cd41f8933493bdd4fa4031351ea328ef8b9 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 14 May 2015 21:14:25 -0400 Subject: [PATCH] protocol: Make translation-unit only variables static --- source/gamecart/protocol.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/gamecart/protocol.c b/source/gamecart/protocol.c index 55477fb..6cf6aaa 100644 --- a/source/gamecart/protocol.c +++ b/source/gamecart/protocol.c @@ -20,10 +20,10 @@ extern u8* bottomScreen; int CartID = -1; u32 CartType = 0; -int A0_Response = -1; -u32 rand1 = 0; -u32 rand2 = 0; +static int A0_Response = -1; +static u32 rand1 = 0; +static u32 rand2 = 0; u32 BSWAP32(u32 val) { return (((val >> 24) & 0xFF)) |