WiiFlow_Lite/source/const_str.hpp
fix94.1 285e8ec753 -added a wiimote battery information bar to the home menu under
the buttons, it'll display the information in percent
2012-11-29 18:48:44 +00:00

14 lines
394 B
C++

#ifndef _CONST_STR_HPP_
#define _CONST_STR_HPP_
#include "wstringEx/wstringEx.hpp"
#include "gui/text.hpp"
#include "defines.h"
#include "svnrev.h"
static const string &VERSION_STRING = sfmt("%s (%s-r%s)", APP_NAME, APP_VERSION, SVN_REV);
static const wstringEx SVN_REV_W(SVN_REV);
static const wstringEx PLAYER_BATTERY_LABEL("P1 %003.f%% | P2 %003.f%% | P3 %003.f%% | P4 %003.f%%");
#endif