diff options
author | Marcus Comstedt | 2003-05-04 22:12:05 +0000 |
---|---|---|
committer | Marcus Comstedt | 2003-05-04 22:12:05 +0000 |
commit | 0a53139659fd36bcff81efd17ef3d26c55081112 (patch) | |
tree | c0b94b522cb822d2274e86cf1dcb13db70626f3b | |
parent | 325c9b321c8f8b63f777c96833e2f27c7695cabf (diff) | |
download | scummvm-rg350-0a53139659fd36bcff81efd17ef3d26c55081112.tar.gz scummvm-rg350-0a53139659fd36bcff81efd17ef3d26c55081112.tar.bz2 scummvm-rg350-0a53139659fd36bcff81efd17ef3d26c55081112.zip |
Allow for larger mouse pointers (CoMI).
svn-id: r7329
-rw-r--r-- | backends/dc/display.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/dc/display.cpp b/backends/dc/display.cpp index e2e4122bb3..ae1a422eea 100644 --- a/backends/dc/display.cpp +++ b/backends/dc/display.cpp @@ -27,8 +27,8 @@ #define SCREEN_W 640 #define SCREEN_H 480 -#define MOUSE_W 64 -#define MOUSE_H 64 +#define MOUSE_W 128 +#define MOUSE_H 128 #define OVL_W 320 #define OVL_H 200 @@ -454,7 +454,7 @@ void OSystem_Dreamcast::drawMouse(int xdraw, int ydraw, int w, int h, mypoly.mode2 = TA_POLYMODE2_BLEND_SRC_ALPHA|TA_POLYMODE2_BLEND_DST_INVALPHA| TA_POLYMODE2_FOG_DISABLED|TA_POLYMODE2_TEXTURE_REPLACE| - TA_POLYMODE2_U_SIZE_64|TA_POLYMODE2_V_SIZE_64; + TA_POLYMODE2_U_SIZE_128|TA_POLYMODE2_V_SIZE_128; mypoly.texture = TA_TEXTUREMODE_ARGB1555|TA_TEXTUREMODE_NON_TWIDDLED| TA_TEXTUREMODE_ADDRESS(mouse_tx[_mouse_buffer]); |