mirror of https://github.com/sm64pc/sm64pc.git
Fixed missing description
This commit is contained in:
parent
368b0a9e3e
commit
505639a63e
6
Makefile
6
Makefile
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue