summaryrefslogtreecommitdiff
path: root/core/engine.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-08-19 16:45:03 +0200
committerRémi Verschelde <rverschelde@gmail.com>2017-08-19 16:48:11 +0200
commit70b0857f6c099339214d0ec2667990e9b7c3c5ea (patch)
tree62a5e5ef873d6eaf53667bd652dccbcace5cfe03 /core/engine.h
parent27fc96f3c8528f0f9cc6e42d8e64934ba1b48d6d (diff)
Fixes for new two-dash long command line arguments
- Fixes some single-dash leftovers that were missed in the previous commit - Reorder the help output for clarity, and document missing options - Drop obsolete options: --noop, --pack, --editor-scene, --level, --import, --import-script, --no-quit - Improve error message on malformed arguments and do not display help on error - Cleanup obsolete code here and there
Diffstat (limited to 'core/engine.h')
-rw-r--r--core/engine.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/engine.h b/core/engine.h
index 16dfb77593..fc3e151540 100644
--- a/core/engine.h
+++ b/core/engine.h
@@ -39,7 +39,6 @@ class Engine {
friend class Main;
- String _custom_level;
uint64_t frames_drawn;
uint32_t _frame_delay;
uint64_t _frame_ticks;
@@ -67,8 +66,6 @@ public:
virtual float get_frames_per_second() const { return _fps; }
- String get_custom_level() const { return _custom_level; }
-
uint64_t get_frames_drawn();
uint64_t get_fixed_frames() const { return _fixed_frames; }