mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-16 15:30:25 +01:00
Fix reordering warnings
This commit is contained in:
parent
d4eea38a65
commit
56c4a5a945
|
@ -113,13 +113,13 @@ CIrrDeviceLinux::CIrrDeviceLinux(const SIrrlichtCreationParameters& param)
|
|||
XDisplay(0), VisualInfo(0), Screennr(0), XWindow(0), StdHints(0),
|
||||
XInputMethod(0), XInputContext(0),
|
||||
HasNetWM(false),
|
||||
#endif
|
||||
#if defined(_IRR_LINUX_X11_XINPUT2_)
|
||||
currentTouchedCount(0),
|
||||
#endif
|
||||
Width(param.WindowSize.Width), Height(param.WindowSize.Height),
|
||||
WindowHasFocus(false), WindowMinimized(false),
|
||||
ExternalWindow(false), AutorepeatSupport(0)
|
||||
#if defined(_IRR_LINUX_X11_XINPUT2_)
|
||||
, currentTouchedCount(0)
|
||||
#endif
|
||||
{
|
||||
#ifdef _DEBUG
|
||||
setDebugName("CIrrDeviceLinux");
|
||||
|
|
|
@ -12,7 +12,7 @@ namespace io
|
|||
|
||||
|
||||
CWriteFile::CWriteFile(const io::path& fileName, bool append)
|
||||
: FileSize(0), Filename(fileName)
|
||||
: Filename(fileName), FileSize(0)
|
||||
{
|
||||
#ifdef _DEBUG
|
||||
setDebugName("CWriteFile");
|
||||
|
|
Loading…
Reference in New Issue
Block a user