mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Fix warning about using uninitialized variable
Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
This commit is contained in:
@@ -23,7 +23,7 @@ ULONG ulNewMacroSize;
|
||||
void
|
||||
bankrangecheck(char *name, ULONG secttype, SLONG org, SLONG bank)
|
||||
{
|
||||
SLONG minbank, maxbank;
|
||||
SLONG minbank = 0, maxbank = 0;
|
||||
char *stype = NULL;
|
||||
switch (secttype) {
|
||||
case SECT_ROMX:
|
||||
|
||||
Reference in New Issue
Block a user