mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
13 lines
374 B
C++
13 lines
374 B
C++
|
|
#ifndef _CONST_STR_HPP_
|
|
#define _CONST_STR_HPP_
|
|
|
|
#include "wstringEx/wstringEx.hpp"
|
|
#include "gui/text.hpp"
|
|
#include "defines.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
|