Skip to content
This repository has been archived by the owner on Mar 20, 2022. It is now read-only.

Commit

Permalink
Fix changelog & fix HUD combining issue
Browse files Browse the repository at this point in the history
  • Loading branch information
NoozAbooz authored Jun 21, 2021
1 parent fc6b9d5 commit dfab50e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions res/doc/gmcpil/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v0.10.1
+ Added Gallium HUD options to the Settings tab.

v0.10.0:
+ Added MCPI-Reborn 2.0 compatibility.
+ Settings are now saved in a single JSON file.
Expand Down
2 changes: 1 addition & 1 deletion src/include/mcpil.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#define GMCPIL_MAJOR 0
#define GMCPIL_MINOR 10
#define GMCPIL_PATCH 0
#define GMCPIL_VERSION "v0.10.0"
#define GMCPIL_VERSION "v0.10.1"

#define STR(str) #str
#define SAFE_ATOI(str) strtol(str ? str : "", NULL, 10)
Expand Down
2 changes: 1 addition & 1 deletion src/tabs.c
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ TAB(Settings, "Settings", "Save", settings_cb, {
if (default_hud == NULL)
{
default_hud = "simple,fps";
mcpil_config_set_username(config, default_hud);
mcpil_config_set_hud(config, default_hud);
}

distance_int = get_distance(default_distance);
Expand Down

0 comments on commit dfab50e

Please sign in to comment.