Changed: #878 Fix typos in comments/code
This commit is contained in:
parent
7bba5b2f5f
commit
ad7e7ccc23
12 changed files with 57 additions and 57 deletions
|
@ -15,12 +15,11 @@
|
|||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#include "stddirect3d.h"
|
||||
#include "driver_direct3d.h"
|
||||
|
||||
#include "nel/misc/di_event_emitter.h"
|
||||
#include "nel/misc/mouse_device.h"
|
||||
|
||||
#include "driver_direct3d.h"
|
||||
|
||||
using namespace std;
|
||||
using namespace NLMISC;
|
||||
|
||||
|
|
|
@ -46,30 +46,33 @@
|
|||
# endif //XF86VIDMODE
|
||||
#endif // NL_OS_UNIX
|
||||
|
||||
#include "driver_opengl_extension.h"
|
||||
|
||||
#include "nel/3d/driver.h"
|
||||
#include "nel/3d/material.h"
|
||||
#include "nel/3d/shader.h"
|
||||
#include "nel/3d/vertex_buffer.h"
|
||||
#include "nel/misc/matrix.h"
|
||||
#include "nel/misc/smart_ptr.h"
|
||||
#include "nel/misc/rgba.h"
|
||||
#include "nel/misc/event_emitter.h"
|
||||
#include "nel/misc/bit_set.h"
|
||||
#include "nel/misc/hierarchical_timer.h"
|
||||
#include "nel/3d/ptr_set.h"
|
||||
#include "nel/misc/bitmap.h"
|
||||
#include "nel/misc/common.h"
|
||||
#include "nel/misc/heap_memory.h"
|
||||
#include "nel/misc/event_emitter_multi.h"
|
||||
#include "driver_opengl_states.h"
|
||||
#include "nel/misc/time_nl.h"
|
||||
|
||||
#include "nel/3d/driver.h"
|
||||
#include "nel/3d/material.h"
|
||||
#include "nel/3d/shader.h"
|
||||
#include "nel/3d/vertex_buffer.h"
|
||||
#include "nel/3d/ptr_set.h"
|
||||
#include "nel/3d/texture_cube.h"
|
||||
#include "nel/3d/vertex_program_parse.h"
|
||||
#include "nel/3d/viewport.h"
|
||||
#include "nel/3d/scissor.h"
|
||||
#include "nel/3d/light.h"
|
||||
#include "nel/misc/time_nl.h"
|
||||
#include "nel/3d/occlusion_query.h"
|
||||
|
||||
#include "driver_opengl_states.h"
|
||||
#include "driver_opengl_extension.h"
|
||||
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
#include "nel/misc/win_event_emitter.h"
|
||||
|
|
|
@ -141,7 +141,6 @@ void CInputHandlerManager::operator ()(const NLMISC::CEvent &event)
|
|||
{
|
||||
HandleSystemCursorCapture(event);
|
||||
|
||||
|
||||
if (event == EventDisplayChangeId)
|
||||
{
|
||||
switch (getCurrentColorDepth())
|
||||
|
|
|
@ -5718,7 +5718,7 @@ void CInterfaceManager::connectYuboChat()
|
|||
if(KlientChatPort != 0 && !_YuboChat.connected())
|
||||
{
|
||||
// NB: hard code url, to avoid "client.cfg trojan"
|
||||
// (a client.cfg with an url pointing to a hackcer site, to grab login/password)
|
||||
// (a client.cfg with an url pointing to a hacker site, to grab login/password)
|
||||
extern std::string LoginLogin, LoginPassword;
|
||||
_YuboChat.connect(string("chat.ryzom.com:")+toString(KlientChatPort), LoginLogin, LoginPassword);
|
||||
|
||||
|
|
|
@ -765,6 +765,7 @@ void CViewRenderer::loadTextures (const std::string &textureFileName, const std:
|
|||
// Insert in map.
|
||||
_TextureMap.insert( make_pair(image.Name, textureId) );
|
||||
}
|
||||
|
||||
// if this is a cursor texture, extract it now (supported for rgba only now, because of the blit)
|
||||
if (CustomMouse.isAlphaBlendedCursorSupported())
|
||||
{
|
||||
|
|
|
@ -1095,8 +1095,6 @@ void initShardDisplay()
|
|||
|
||||
void onlogin(bool vanishScreen = true)
|
||||
{
|
||||
|
||||
|
||||
CInterfaceManager *pIM = CInterfaceManager::getInstance();
|
||||
|
||||
// Remove space before and after each string login & password
|
||||
|
|
|
@ -271,7 +271,7 @@ void CView::cameraDistance(float dist)
|
|||
void CView::changeCameraHeight(bool up, bool down)
|
||||
{
|
||||
// If the user is not inside a building.
|
||||
if(UserEntity->forceIndoorFPV() == false)
|
||||
if(!UserEntity->forceIndoorFPV())
|
||||
{
|
||||
if(up)
|
||||
{
|
||||
|
@ -293,7 +293,7 @@ void CView::changeCameraHeight(bool up, bool down)
|
|||
void CView::changeCameraDist(bool forward, bool backward)
|
||||
{
|
||||
// If the user is not inside a building.
|
||||
if(UserEntity->forceIndoorFPV() == false)
|
||||
if(!UserEntity->forceIndoorFPV())
|
||||
{
|
||||
if(forward)
|
||||
decreaseCameraDist();
|
||||
|
|
Loading…
Reference in a new issue