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 | 3fb5b7a3bd95eb6327c6894072739a7c28c711ce (patch) | |
tree | eb808152554a60731867f4c42c5ffbd9d428d185 | |
parent | bcd3e1af2f2d2f29ca739ee138ef72357b5b7b3a (diff) | |
download | minetest-3fb5b7a3bd95eb6327c6894072739a7c28c711ce.tar.gz minetest-3fb5b7a3bd95eb6327c6894072739a7c28c711ce.tar.bz2 minetest-3fb5b7a3bd95eb6327c6894072739a7c28c711ce.zip |
Set the window caption for the initial window too
-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);
|