diff options
author | Jay Arndt <jayarn27182@windstream.net> | 2016-07-06 20:15:36 -0500 |
---|---|---|
committer | est31 <est31@users.noreply.github.com> | 2016-07-07 03:15:36 +0200 |
commit | 795f1c75cb6e337984cccd042371cb8b9a3ef6c1 (patch) | |
tree | 6ed1a205dd563f194b1c81b456df159ca502b931 /src | |
parent | 281e9f39fdffd106e79122ae23e2b5443a5daea3 (diff) | |
download | minetest-795f1c75cb6e337984cccd042371cb8b9a3ef6c1.tar.gz minetest-795f1c75cb6e337984cccd042371cb8b9a3ef6c1.tar.bz2 minetest-795f1c75cb6e337984cccd042371cb8b9a3ef6c1.zip |
Fix warning in porting::setXorgWindowIcon when building without X11 (#4288)
Diffstat (limited to 'src')
-rw-r--r-- | src/porting.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/porting.cpp b/src/porting.cpp index ddf8139ea..15a18bdfb 100644 --- a/src/porting.cpp +++ b/src/porting.cpp @@ -695,8 +695,8 @@ bool setXorgWindowIcon(IrrlichtDevice *device, delete [] icon_buffer; - return true; #endif + return true; } //// |