Allow reaching 999.9 over X in HSpace; Y fixed symmetrically and would be relevant if weren't inverted; bug #628
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3098 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
Changes towards version 0.7:
|
Changes towards version 0.7:
|
||||||
|
- Allow reaching 999.9:999.9 in HyperSpace (bug #628), from Nic
|
||||||
- Use system getopt_long() when available - SvdB
|
- Use system getopt_long() when available - SvdB
|
||||||
- Added --addondir commandline option - Mika
|
- Added --addondir commandline option - Mika
|
||||||
- Case insensitive matching when looking for .zip/.uqm/.rmp files - SvdB
|
- Case insensitive matching when looking for .zip/.uqm/.rmp files - SvdB
|
||||||
|
|||||||
@@ -76,11 +76,11 @@ extern int ScreenHeight;
|
|||||||
#define MAX_Y_UNIVERSE 9999
|
#define MAX_Y_UNIVERSE 9999
|
||||||
#define MAX_X_LOGICAL \
|
#define MAX_X_LOGICAL \
|
||||||
((UNIVERSE_TO_LOGX (MAX_X_UNIVERSE + 1) > UNIVERSE_TO_LOGX (-1) ? \
|
((UNIVERSE_TO_LOGX (MAX_X_UNIVERSE + 1) > UNIVERSE_TO_LOGX (-1) ? \
|
||||||
UNIVERSE_TO_LOGX (MAX_X_UNIVERSE) : UNIVERSE_TO_LOGX (-1)) \
|
UNIVERSE_TO_LOGX (MAX_X_UNIVERSE + 1) : UNIVERSE_TO_LOGX (-1)) \
|
||||||
- 1L)
|
- 1L)
|
||||||
#define MAX_Y_LOGICAL \
|
#define MAX_Y_LOGICAL \
|
||||||
((UNIVERSE_TO_LOGY (MAX_Y_UNIVERSE + 1) > UNIVERSE_TO_LOGY (-1) ? \
|
((UNIVERSE_TO_LOGY (MAX_Y_UNIVERSE + 1) > UNIVERSE_TO_LOGY (-1) ? \
|
||||||
UNIVERSE_TO_LOGY (MAX_Y_UNIVERSE) : UNIVERSE_TO_LOGY (-1)) \
|
UNIVERSE_TO_LOGY (MAX_Y_UNIVERSE + 1) : UNIVERSE_TO_LOGY (-1)) \
|
||||||
- 1L)
|
- 1L)
|
||||||
#define SECTOR_WIDTH 195
|
#define SECTOR_WIDTH 195
|
||||||
#define SECTOR_HEIGHT 25
|
#define SECTOR_HEIGHT 25
|
||||||
|
|||||||
Reference in New Issue
Block a user