diff --git a/reactos/base/applications/games/spider/spider.h b/reactos/base/applications/games/spider/spider.h index ff633c6ce20..71383d2514e 100644 --- a/reactos/base/applications/games/spider/spider.h +++ b/reactos/base/applications/games/spider/spider.h @@ -15,8 +15,8 @@ #define CARDBACK_OPTIONS_WIDTH 72 #define CARDBACK_OPTIONS_HEIGHT 112 -#define X_BORDER 4 -#define Y_BORDER 4 +#define X_BORDER 5 +#define Y_BORDER 5 #define NUM_STACKS 10 diff --git a/reactos/base/applications/games/spider/spigame.cpp b/reactos/base/applications/games/spider/spigame.cpp index 87cd6a2b33b..c01dcd4f26e 100644 --- a/reactos/base/applications/games/spider/spigame.cpp +++ b/reactos/base/applications/games/spider/spigame.cpp @@ -298,7 +298,7 @@ void CreateSpider() pStack[i]->SetFaceDirection(CS_FACE_DOWN, 0); pos = i - NUM_STACKS/2; pStack[i]->SetPlacement(CS_XJUST_CENTER, 0, - pos * (__cardwidth + X_BORDER) + 6 * (X_BORDER + 2) + 2, 0); + pos * (__cardwidth + X_BORDER) + 6 * (X_BORDER + 1) + 3, 0); pStack[i]->SetEmptyImage(CS_EI_SUNK); pStack[i]->SetDragRule(CS_DRAG_CALLBACK, StackDragProc); pStack[i]->SetDropRule(CS_DROP_CALLBACK, StackDropProc);