shithub: cstory

Download patch

ref: ccc0c63ebe6e29a966edbb4acfc0e796b0b27072
parent: 111313ec7787e959f032b39f5150b93aaa9c8c30
author: Clownacy <[email protected]>
date: Thu Mar 7 09:37:24 EST 2019

Fixed minimap

Oops

--- a/src/MiniMap.cpp
+++ b/src/MiniMap.cpp
@@ -118,8 +118,8 @@
 	
 	RECT rcMiniMap;
 	rcMiniMap.left = 0;
-	rcMiniMap.top = gMap.width;
-	rcMiniMap.right = 0;
+	rcMiniMap.right = gMap.width;
+	rcMiniMap.top = 0;
 	rcMiniMap.bottom = gMap.length;
 
 	rcView.right = --rcView.left + gMap.width + 2;