aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Windows64/Windows64_App.cpp
AgeCommit message (Collapse)Author
13 daysModernize project codebase (#906)ModMaker101
* Fixed boats falling and a TP glitch #266 * Replaced every C-style cast with C++ ones * Replaced every C-style cast with C++ ones * Fixed boats falling and a TP glitch #266 * Updated NULL to nullptr and fixing some type issues * Modernized and fixed a few bugs - Replaced most instances of `NULL` with `nullptr`. - Replaced most `shared_ptr(new ...)` with `make_shared`. - Removed the `nullptr` macro as it was interfering with the actual nullptr keyword in some instances. * Fixing more conflicts * Replace int loops with size_t and start work on overrides * Add safety checks and fix a issue with vector going OOR
2026-03-07Revert "Project modernization (#630)"Loki Rautio
This code was not tested and breaks in Release builds, reverting to restore functionality of the nightly. All in-game menus do not work and generating a world crashes. This reverts commit a9be52c41a02d207233199e98898fe7483d7e817.
2026-03-08Project modernization (#630)ModMaker101
* Fixed boats falling and a TP glitch #266 * Replaced every C-style cast with C++ ones * Replaced every C-style cast with C++ ones * Fixed boats falling and a TP glitch #266 * Updated NULL to nullptr and fixing some type issues * Modernized and fixed a few bugs - Replaced most instances of `NULL` with `nullptr`. - Replaced most `shared_ptr(new ...)` with `make_shared`. - Removed the `nullptr` macro as it was interfering with the actual nullptr keyword in some instances. * Fixing more conflicts * Replace int loops with size_t and start work on overrides
2026-03-07Remove all MSVC `__int64` (#742)void_17
2026-03-04Update username logic and implement latest LCEMP changes (#311)Slenderman
* Update username logic and implement latest LCEMP changes * Update old reference * Fix tutorial world crash * Restore deleted comment
2026-03-03Revert "Revert "Win64: configurable username (username.txt) and persistent ↵void_17
ga…" (#235) This reverts commit 7f7d99501cf87fcc234a5d3af453e7e0642f96a3.
2026-03-03Revert "Win64: configurable username (username.txt) and persistent game ↵void_17
setti…" (#234) This reverts commit b8a7f816b52775fdcfb3503f0000accb8cd65765.
2026-03-03Win64: configurable username (username.txt) and persistent game settings ↵dtentiion
(settings.dat) (#195)
2026-03-03Fixes for PR #96 (#170)lspepinho
* Implement basic multiplayer functionality * Update README.md --------- Co-authored-by: Slenderman <ssimulpong@outlook.com>
2026-03-02Revert "Get rid of MSVC's __int64"void_17
This reverts commit d63f79325f85e014361eb8cf1e41eaebedb1ae71.
2026-03-02Get rid of MSVC's __int64void_17
Use either int64_t, uint64_t or long long and unsigned long long, defined as per C++11 standard
2026-03-01Windows: More proper shutdownAPAmk2
2026-03-01Fix game exitrtm516
2026-03-01Initial commitdaoge_cmd