Get version from tag.

This commit is contained in:
Steven Smith 2015-08-29 09:39:56 -07:00
parent 71428a0a4f
commit e39db2ad9a
2 changed files with 8 additions and 3 deletions

View File

@ -7,5 +7,6 @@ endif
# ENABLE_EXCEPTIONS: Enable C++ exceptions.
# NO_CITRUS: Do not include citrus.
#---------------------------------------------------------------------------------
BUILD_FLAGS := -DVERSION_STRING="\"`git describe --tags --abbrev=0`\""
include $(DEVKITPRO)/citrus/tools/make_base
include $(DEVKITPRO)/citrus/tools/make_base

View File

@ -391,13 +391,17 @@ bool onLoop() {
stream << "\n" << "START - Exit to launcher";
}
std::string str = stream.str();
std::stringstream titleStream;
titleStream << "FBI " << VERSION_STRING;
std::string title = titleStream.str();
u32 screenWidth;
u32 screenHeight;
gpu::getViewportWidth(&screenWidth);
gpu::getViewportHeight(&screenHeight);
std::string str = stream.str();
const std::string title = "FBI v1.4.10";
gput::drawString(title, (screenWidth - gput::getStringWidth(title, 16)) / 2, (screenHeight - gput::getStringHeight(title, 16) + gput::getStringHeight(str, 8)) / 2, 16, 16);
gput::drawString(str, (screenWidth - gput::getStringWidth(str, 8)) / 2, 4, 8, 8);