LAB: Code naming, reduced variable scope
This commit is contained in:
parent
23f73c3244
commit
c42629674b
3 changed files with 125 additions and 130 deletions
|
@ -39,7 +39,7 @@
|
|||
|
||||
namespace Lab {
|
||||
|
||||
static byte MouseData[] = {
|
||||
static byte mouseData[] = {
|
||||
1, 1, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
1, 7, 1, 0, 0, 0, 0, 0, 0, 0,
|
||||
1, 7, 7, 1, 0, 0, 0, 0, 0, 0,
|
||||
|
@ -174,7 +174,7 @@ void EventManager::updateMouse() {
|
|||
* Initializes the mouse.
|
||||
*/
|
||||
void EventManager::initMouse() {
|
||||
g_system->setMouseCursor(MouseData, MOUSE_WIDTH, MOUSE_HEIGHT, 0, 0, 0);
|
||||
g_system->setMouseCursor(mouseData, MOUSE_WIDTH, MOUSE_HEIGHT, 0, 0, 0);
|
||||
g_system->showMouse(false);
|
||||
|
||||
setMousePos(Common::Point(0, 0));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue