mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-05 19:41:43 +08:00
Get version from tag.
This commit is contained in:
parent
71428a0a4f
commit
e39db2ad9a
3
Makefile
3
Makefile
@ -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
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user