mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: #1034 Implement CCustomMouse for Linux
This commit is contained in:
parent
7883934455
commit
12ce931793
3 changed files with 0 additions and 7 deletions
|
@ -48,7 +48,6 @@
|
|||
#include "interface_v3/action_handler.h"
|
||||
#include "sound_manager.h"
|
||||
#include "input.h"
|
||||
#include "interface_v3/custom_mouse.h"
|
||||
#include "login.h"
|
||||
#include "login_progress_post_thread.h"
|
||||
|
||||
|
@ -287,12 +286,10 @@ void setOutGameFullScreen()
|
|||
/*
|
||||
InitMouseWithCursor (true);
|
||||
Driver->showCursor(false);
|
||||
CustomMouse.updateCursor(true); // force a rebuild (may be due to fullscreen, but hotspot broken else ...)
|
||||
Driver->showCursor(true);
|
||||
Driver->clearBuffers(CRGBA::Black);
|
||||
Driver->swapBuffers();
|
||||
Driver->showCursor(false);
|
||||
CustomMouse.updateCursor(true); // force a rebuild (may be due to fullscreen, but hotspot broken else ...)
|
||||
Driver->showCursor(true);
|
||||
*/
|
||||
}
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
#include "time_client.h"
|
||||
#include "input.h"
|
||||
#include "interface_v3/interface_manager.h"
|
||||
#include "interface_v3/custom_mouse.h"
|
||||
|
||||
|
||||
using namespace NLMISC;
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
#include "release.h"
|
||||
#include "net_manager.h"
|
||||
#include "client_cfg.h"
|
||||
#include "interface_v3/custom_mouse.h"
|
||||
#include "bg_downloader_access.h"
|
||||
#include "nel/misc/system_utils.h"
|
||||
|
||||
|
@ -161,7 +160,6 @@ void drawLoadingBitmap (float progress)
|
|||
|
||||
void CProgress::internalProgress (float value)
|
||||
{
|
||||
//CustomMouse.updateCursor();
|
||||
// Get croped value
|
||||
value = getCropedValue (value);
|
||||
|
||||
|
@ -396,7 +394,6 @@ void CProgress::internalProgress (float value)
|
|||
// \todo GUIGUI : Remove this when possible.
|
||||
NetMngr.update();
|
||||
CCDBNodeBranch::flushObserversCalls();
|
||||
//CustomMouse.updateCursor();
|
||||
|
||||
// update system dependent progress bar
|
||||
static uint previousValue = 0;
|
||||
|
|
Loading…
Reference in a new issue