diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2011-06-09 22:31:40 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2011-07-20 17:59:48 +0200 |
commit | 52df1b598c253eda7b9e33cf9b7e97d16c7dc138 (patch) | |
tree | 630192d43d6a1a91d0ea1e2ef207dd281c8b045f /src | |
parent | 8fa94c3547dc7bd25e9bb7f0c404a00028a1107d (diff) | |
download | minetest-52df1b598c253eda7b9e33cf9b7e97d16c7dc138.tar.gz minetest-52df1b598c253eda7b9e33cf9b7e97d16c7dc138.tar.bz2 minetest-52df1b598c253eda7b9e33cf9b7e97d16c7dc138.zip |
Set the window caption for the initial window too
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 1cc479d65..7d0ea12ab 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1350,6 +1350,9 @@ int main(int argc, char *argv[]) // Set device in game parameters
device = device;
+ + // Set the window caption + device->setWindowCaption(L"Minetest [Main Menu]"); // Create time getter
g_timegetter = new IrrlichtTimeGetter(device);
|