From 66fe98cfc3ec79f517bd6414103c4bb5ea49fac2 Mon Sep 17 00:00:00 2001 From: kervala Date: Sun, 27 Jun 2010 14:49:17 +0200 Subject: [PATCH] Fixed: world_editor_sound_plugin compilation on 64 bits --- .../world_editor/world_editor_doc.h | 4 +- .../world_editor_sound_plugin/DialogFlags.cpp | 2 +- .../world_editor_sound_plugin/DialogFlags.h | 2 +- .../world_editor_sound_plugin.vcproj | 175 ++++++++---------- 4 files changed, 86 insertions(+), 97 deletions(-) diff --git a/code/ryzom/tools/leveldesign/world_editor/world_editor/world_editor_doc.h b/code/ryzom/tools/leveldesign/world_editor/world_editor/world_editor_doc.h index b23f5d522..7ec562b37 100644 --- a/code/ryzom/tools/leveldesign/world_editor/world_editor/world_editor_doc.h +++ b/code/ryzom/tools/leveldesign/world_editor/world_editor/world_editor_doc.h @@ -76,8 +76,8 @@ public: bool operator== (const CDatabaseLocator &other) const; bool operator< (const CDatabaseLocator &other) const { - const uint size = _LocateStack.size (); - const uint otherSize = other._LocateStack.size (); + const uint size = (uint)_LocateStack.size (); + const uint otherSize = (uint)other._LocateStack.size (); const uint minSize = std::min (size, otherSize); uint i; for (i=0; i + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - -