LAB: Code naming, reduced variable scope

This commit is contained in:
Eugene Sandulenko 2015-12-09 06:07:34 +01:00 committed by Willem Jan Palenstijn
parent 23f73c3244
commit c42629674b
3 changed files with 125 additions and 130 deletions

View file

@ -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));