mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Mapster32: fix use of uninitialized values
git-svn-id: https://svn.eduke32.com/eduke32@7326 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
975126edf4
commit
4cf5a9c31a
1 changed files with 1 additions and 1 deletions
|
@ -3511,7 +3511,7 @@ void overheadeditor(void)
|
|||
|
||||
while ((keystatus[buildkeys[BK_MODE2D_3D]]>>1) == 0)
|
||||
{
|
||||
int32_t mousx, mousy;
|
||||
int32_t mousx = 0, mousy = 0;
|
||||
|
||||
if (zoom < ztarget)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue