mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-18 00:08:20 +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),
|
XDisplay(0), VisualInfo(0), Screennr(0), XWindow(0), StdHints(0),
|
||||||
XInputMethod(0), XInputContext(0),
|
XInputMethod(0), XInputContext(0),
|
||||||
HasNetWM(false),
|
HasNetWM(false),
|
||||||
#endif
|
|
||||||
#if defined(_IRR_LINUX_X11_XINPUT2_)
|
|
||||||
currentTouchedCount(0),
|
|
||||||
#endif
|
#endif
|
||||||
Width(param.WindowSize.Width), Height(param.WindowSize.Height),
|
Width(param.WindowSize.Width), Height(param.WindowSize.Height),
|
||||||
WindowHasFocus(false), WindowMinimized(false),
|
WindowHasFocus(false), WindowMinimized(false),
|
||||||
ExternalWindow(false), AutorepeatSupport(0)
|
ExternalWindow(false), AutorepeatSupport(0)
|
||||||
|
#if defined(_IRR_LINUX_X11_XINPUT2_)
|
||||||
|
, currentTouchedCount(0)
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
setDebugName("CIrrDeviceLinux");
|
setDebugName("CIrrDeviceLinux");
|
||||||
|
@ -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