-
Notifications
You must be signed in to change notification settings - Fork 505
Export DF world map for use in GIS tools #5376
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
d0e8207
d7a04d6
d899a2a
7043d2c
3468e6f
5856c80
b8f92d8
b53b44f
f495b6d
95eab7f
4473f09
9075ba4
721ca8e
b6a3824
2f1bb5f
7c23828
394718a
70cb75e
9397f27
47d2c1c
93a23af
bbebf84
d08da22
7da854b
b4bf4aa
e1040e3
868cbbe
cb8641c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| coord2d(uint16_t _x, uint16_t _y) : x(_x), y(_y) {} | ||
| coord2d(int16_t _x, int16_t _y) : x(_x), y(_y) {} | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've been reluctant to make this change myself because I've been uncertain of the consequences - how well tested is this behaviorally?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Apart from the fact that it now allows using brace initialization using the correct type for the members, I have not noticed any adverse effects. I haven't played a whole lot on this branch, but I did play a few hours in total and I didn't notice anything off. |
||
|
|
||
| bool isValid() const { return x >= 0; } | ||
| void clear() { x = y = -30000; } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.