increase map size limit to 1000 by 1000

This commit is contained in:
Tomasz Śniatowski 2009-03-15 23:57:51 +01:00
parent 88200903db
commit 89adc0fb1c
2 changed files with 3 additions and 1 deletions

View file

@ -28,6 +28,8 @@ Version 1.5.14:
* Started with a new layout engine for the new widgets (bug #13180)
* Fix few bugs about selecting an unit during another unit's move
* Fix a regression: again allow to use right-click to cancel drag&drop
* WML Engine:
* Increase the map size limit to 1000 by 1000
* Miscellaneous and bug fixes:
* Fix another campaign replay bug (#13139)
* Fix AI bug #13165 (leader too aggressive)

View file

@ -33,7 +33,7 @@
namespace t_translation {
size_t max_map_size() {
return 200; //TODO make this overridable by the user without having to rebuild
return 1000; //TODO make this overridable by the user without having to rebuild
}
/***************************************************************************************/