From a39c58b65343a7b8fc22a912b2ca3cae568feee2 Mon Sep 17 00:00:00 2001 From: Arthur Ice Date: Wed, 26 Mar 2014 17:28:25 -0700 Subject: [PATCH] unneeded local variable warning removed --- utils/azone2/zonv4.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/utils/azone2/zonv4.cpp b/utils/azone2/zonv4.cpp index 0d5b58b2a..4c2105b18 100644 --- a/utils/azone2/zonv4.cpp +++ b/utils/azone2/zonv4.cpp @@ -31,13 +31,8 @@ int Zonv4Loader::Open(char *base_path, char *zone_name, Archive *archive) int position; int buf_len; - Texture **tex; - int tex_count, tex_tmp, *tex_map; - char *filename; - uchar *zon_tmp, *zon_orig; - float rot_change = 180.0f / 3.14159f; printf("Attempting to load EQG %s\n", zone_name); @@ -59,8 +54,6 @@ int Zonv4Loader::Open(char *base_path, char *zone_name, Archive *archive) zonv4_header *hdr = (zonv4_header *) buffer; - zonv4_placeable *plac; - if(hdr->magic[0] != 'E' || hdr->magic[1] != 'Q' || hdr->magic[2] != 'T' || hdr->magic[3] != 'Z') return 0; #ifdef DEBUGEQG