diff --git a/Makefile b/Makefile index 16dacd33..047d4708 100644 --- a/Makefile +++ b/Makefile @@ -31,10 +31,10 @@ OSX_BUILD ?= 0 # Specify the target you are building for, TARGET_BITS=0 means native TARGET_ARCH ?= native TARGET_BITS ?= 0 -# Disable better camera by default -BETTERCAMERA ?= 0 -# Disable no drawing distance by default -NODRAWINGDISTANCE ?= 0 +# Disable better camera +BETTERCAMERA = 0 +# Enable no drawing distance by default +NODRAWINGDISTANCE ?= 1 # Disable texture fixes by default (helps with them purists) TEXTURE_FIX ?= 0 # Enable Discord Rich Presence diff --git a/src/pc/discord/discordrpc.cpp b/src/pc/discord/discordrpc.cpp index 55753cce..69f593e6 100644 --- a/src/pc/discord/discordrpc.cpp +++ b/src/pc/discord/discordrpc.cpp @@ -177,6 +177,7 @@ static void set_time(void){ static void set_details(void) { if (gCurrLevelNum == LEVEL_SA) { + lastCourseNum = gCurrCourseNum; strcpy(stage, "Chroma Keying"); return; }