[01:10:18] --- amatecha_ is now known as amatecha
[02:40:04] --- DominusExult is now known as Dominus
[14:26:53] <Dominus> wjp, can you help me yet again with int const char whatever stuff?
[14:26:55] <Dominus> http://pastie.org/9742567
[14:27:24] <Dominus> I'm trying to include the geographic coordinates in the cheat screen and eventually will try to add a teleport cheat as in the original
[14:28:12] <Dominus> of course what I do with the std:string doesn't work for the int so I'm again struggling with this
[14:28:52] <Dominus> and I actually don't want the real value of longi and lat but the absolute, meaning not the negative for north and west...
[15:00:16] <wjp> you're using very strange quotes there
[15:00:31] <wjp> string-delimiting quotes should be "
[15:00:53] <wjp> or is that website using a strange font?
[15:01:20] <wjp> ah, yes, strange font
[15:01:23] <wjp> never mind :-)
[15:02:57] <wjp> snprintf(buf, 512, "Coords in geo %d %s %d %s", longi, (longi < 0 ? "West" : "East"), lati, (lati < 0 ? "North" : "South"));
[15:18:32] <Dominus> Thaks wjp! So easy and I desperately wanted to use the long and stony path
[15:18:47] <Dominus> I'll never learn ;)
[15:40:16] <wjp> oh, and maybe abs(longi) or so
[15:41:54] <Dominus> yup, I was about to ask
[15:43:50] <Dominus> do you think "in geo" is good enough description?
[15:44:40] <Dominus> for geographic
[15:44:47] <wjp> Maybe "Geo coords"
[15:47:54] <Dominus> hmm looks off
[15:48:29] <Dominus> if Geo coords, it should probably be "Hex coords" and "Dec coords" as well
[15:50:50] <wjp> "Coords geo" also fine
[15:51:01] <wjp> the "in" is just a bit weird
[15:51:16] <Dominus> true, I'll go with that
[23:21:14] <Dominus> phew, writing an additional display for the cheat screen is less fun than I hoped it to be... :)
[23:21:21] <Dominus> time to sleep :)