mirror of
https://github.com/ZDoom/Raze.git
synced 2025-06-02 02:01:31 +00:00
- addressed most unused/uninitialized variable warnings from MSVC.
This commit is contained in:
parent
c6bd5c04c7
commit
01abe7b2ac
158 changed files with 94 additions and 468 deletions
|
@ -318,7 +318,7 @@ void parseCopyTile(FScanner& sc, FScriptPosition& pos)
|
|||
FScanner::SavedPos blockend;
|
||||
int tile = -1, source = -1;
|
||||
int havetile = 0, xoffset = -1024, yoffset = -1024;
|
||||
int flags = 0, tsiz = 0, temppal = -1, tempsource = -1;
|
||||
int flags = 0, temppal = -1, tempsource = -1;
|
||||
|
||||
if (!sc.GetNumber(tile, true)) return;
|
||||
|
||||
|
@ -1953,7 +1953,7 @@ void parseModel(FScanner& sc, FScriptPosition& pos)
|
|||
|
||||
FString modelfn;
|
||||
double scale = 1.0, mzadd = 0.0, myoffset = 0.0;
|
||||
int32_t shadeoffs = 0, pal = 0, flags = 0;
|
||||
int32_t shadeoffs = 0, flags = 0;
|
||||
FixedBitArray<1024> usedframes;
|
||||
|
||||
usedframes.Zero();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue