mirror of
https://github.com/minetest/irrlicht.git
synced 2025-01-12 10:50:31 +01:00
Resolve some -Wreorder warnings
This commit is contained in:
parent
5527b9f373
commit
ea297196b7
@ -414,6 +414,9 @@ namespace irr
|
|||||||
bool HasNetWM;
|
bool HasNetWM;
|
||||||
// text is utf-8
|
// text is utf-8
|
||||||
mutable core::stringc Clipboard;
|
mutable core::stringc Clipboard;
|
||||||
|
#endif
|
||||||
|
#if defined(_IRR_LINUX_X11_XINPUT2_)
|
||||||
|
int currentTouchedCount;
|
||||||
#endif
|
#endif
|
||||||
u32 Width, Height;
|
u32 Width, Height;
|
||||||
bool WindowHasFocus;
|
bool WindowHasFocus;
|
||||||
@ -454,10 +457,6 @@ namespace irr
|
|||||||
};
|
};
|
||||||
core::array<JoystickInfo> ActiveJoysticks;
|
core::array<JoystickInfo> ActiveJoysticks;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(_IRR_LINUX_X11_XINPUT2_)
|
|
||||||
int currentTouchedCount;
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ namespace io
|
|||||||
|
|
||||||
|
|
||||||
CWriteFile::CWriteFile(const io::path& fileName, bool append)
|
CWriteFile::CWriteFile(const io::path& fileName, bool append)
|
||||||
: FileSize(0), Filename(fileName)
|
: Filename(fileName), FileSize(0)
|
||||||
{
|
{
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
setDebugName("CWriteFile");
|
setDebugName("CWriteFile");
|
||||||
|
Loading…
Reference in New Issue
Block a user