aboutsummaryrefslogtreecommitdiff
path: root/src/gameparams.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add register dialog to separate login/register (#12185)rubenwardy2022-06-051-2/+9
| | | | | | | | | | New users find Minetest's account system confusing. This change moves username/password to a new dialog, with login and register buttons added to the Join Game tab. The old registration confirmation dialog is removed in favour of the new dialog. Fixes #8138
* Cleanup ClientLauncher structure (#10160)SmallJoker2020-07-141-0/+19
| | | Remove duplicated variables and unify the startup data into a new (inherited) struct.
* C++ modernize: Pragma once (#6264)Loïc Blot2017-08-171-4/+1
| | | | * Migrate cpp headers to pragma once
* LINT: Switch whitelist check from egrep to awkLoïc Blot2017-04-061-1/+2
| | | | Bonus: make CI happy with the last rules fix
* Refactor loggingShadowNinja2015-10-141-4/+5
| | | | | | | | | - Add warning log level - Change debug_log_level setting to enumeration string - Map Irrlicht log events to MT log events - Encapsulate log_* functions and global variables into a class, Logger - Unify dstream with standard logging mechanism - Unify core.debug() with standard core.log() script API
* main.cpp rework * Move ClientLauncher class to a dedicated file * ↵Loic Blot2015-02-121-0/+33
ClientLauncher now owns print_video_modes and speed_tests functions (they are only called by him) * Move GameParams to shared/gameparams.h because it's shared between server and client and launcher need to know it * Move InputHandlers class to client/inputhandler.h * Cleanup includes