Fixed missing description

This commit is contained in:
KiritoDv 2021-06-23 19:23:56 +00:00
parent 368b0a9e3e
commit 505639a63e
2 changed files with 2 additions and 6 deletions

View File

@ -178,11 +178,6 @@ else
endif
endif
# Moon64 custom flags
# ifeq ($(TOGGLE_GAME_DEBUG),1)
# VERSION_CFLAGS += -DTOGGLE_GAME_DEBUG
# endif
############################ Universal Dependencies ############################
# (This is a bit hacky, but a lot of rules implicitly depend
@ -616,6 +611,7 @@ ifeq ($(DEBUG),2)
CC_CHECK += -DGAME_DEBUG -DSM64_DEBUG
CFLAGS += -DGAME_DEBUG -DSM64_DEBUG
endif
################################
# Check for enhancement options

View File

@ -45,7 +45,7 @@ namespace Moon {
if(j.contains("bit") && j["bit"].contains("name")){
BitModule* bit = new BitModule({
.name = j["bit"]["name"],
.description = j["bit"].contains("icon") ? j["bit"]["description"] : "None",
.description = j["bit"].contains("description") ? j["bit"]["description"] : "None",
.authors = j["bit"]["authors"],
.version = j["bit"]["version"],
.website = j["bit"].contains("website") ? j["bit"]["website"] : "None",