diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-03-23 10:41:29 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-03-23 10:41:29 (GMT) |
| commit | 7f433013e089cf54d7ef484a6c891a9280ec3ec6 (patch) | |
| tree | d6d72495e231cb80b459b8835fb57cca177c2ad8 /src | |
| parent | 12270f1ef383463040d3165449dd52f4fe75f4e5 (diff) | |
| download | powder-7f433013e089cf54d7ef484a6c891a9280ec3ec6.zip powder-7f433013e089cf54d7ef484a6c891a9280ec3ec6.tar.gz | |
Enable realistic heat and put a build info thingy into welcome screen
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.c | 37 |
1 files changed, 36 insertions, 1 deletions
@@ -155,7 +155,42 @@ static const char *it_msg = "\bgSimon Robertshaw, Skresanov Savely, cracker64, Catelite, Bryan Hoyle, Nathan Cousins, jacksonmj,\n" "\bgLieuwe Mosch, Anthony Boot, Matthew \"me4502\", MaksProg\n" "\n" - "\bgTo use online features such as saving, you need to register at: \brhttp://powdertoy.co.uk/Register.html" + "\bgTo use online features such as saving, you need to register at: \brhttp://powdertoy.co.uk/Register.html\n" + "\n" + "\bt" MTOS(SAVE_VERSION) "." MTOS(MINOR_VERSION) "." MTOS(BUILD_NUM) " " +#ifdef X86 + "X86 " +#endif +#ifdef X86_SSE + "X86_SSE " +#endif +#ifdef X86_SSE2 + "X86_SSE2 " +#endif +#ifdef X86_SSE3 + "X86_SSE3 " +#endif +#ifdef LIN32 + "LIN32 " +#endif +#ifdef LIN64 + "LIN64 " +#endif +#ifdef WIN32 + "WIN32 " +#endif +#ifdef MACOSX + "MACOSX " +#endif +#ifdef LUACONSOLE + "LUACONSOLE " +#endif +#ifdef GRAVFFT + "GRAVFFT " +#endif +#ifdef REALISTIC + "REALISTIC" +#endif ; typedef struct |
