aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/linuxstuff.h
diff options
context:
space:
mode:
authoryinsimei2017-06-05 19:58:32 +0200
committerEugene Sandulenko2017-07-13 18:27:45 +0200
commitbee42dc52fb7fa2d73f95cf088fc26ced732a17c (patch)
treef414e55652ba611caf72a137380beacd9ce51788 /engines/sludge/linuxstuff.h
parent7430ebe8830f58ae8fd1c123bfd7b08031a0f8b1 (diff)
downloadscummvm-rg350-bee42dc52fb7fa2d73f95cf088fc26ced732a17c.tar.gz
scummvm-rg350-bee42dc52fb7fa2d73f95cf088fc26ced732a17c.tar.bz2
scummvm-rg350-bee42dc52fb7fa2d73f95cf088fc26ced732a17c.zip
SLUDGE: remove platform dependent defines
Diffstat (limited to 'engines/sludge/linuxstuff.h')
-rw-r--r--engines/sludge/linuxstuff.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/engines/sludge/linuxstuff.h b/engines/sludge/linuxstuff.h
deleted file mode 100644
index b97c7bf7fc..0000000000
--- a/engines/sludge/linuxstuff.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/* ScummVM - Graphic Adventure Engine
- *
- * ScummVM is the legal property of its developers, whose names
- * are too numerous to list here. Please refer to the COPYRIGHT
- * file distributed with this source distribution.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- */
-#ifndef SLUDGE_LINUXSTUFF_H
-#define SLUDGE_LINUXSTUFF_H
-
-namespace Sludge {
-
-struct cmdlineSettingsStruct {
- bool languageSet;
- unsigned int languageID;
- bool fullscreenSet;
- bool userFullScreen;
- bool aaSet;
- int antiAlias;
- bool debugModeSet;
- bool debugMode;
- bool listLanguages;
-};
-
-void printCmdlineUsage();
-bool parseCmdlineParameters(int argc, char *argv[]);
-
-} // End of namespace Sludge
-
-#endif