mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 21:55:38 +00:00
Added RetroDECK cases under custom ifdef to not interfere with the rest of the code - fixed undeclared string
This commit is contained in:
parent
b61c5d4a1d
commit
de741242c0
|
@ -695,9 +695,12 @@ int main(int argc, char* argv[])
|
|||
Log::open();
|
||||
{
|
||||
|
||||
const std::string applicationName {"ES-DE"};
|
||||
|
||||
#if defined(__RETRODECK__)
|
||||
const std::string applicationName {"RetroDECK"};
|
||||
applicationName = "RetroDECK";
|
||||
#endif
|
||||
|
||||
#if defined(__ANDROID__)
|
||||
LOG(LogInfo) << applicationName << " " << PROGRAM_VERSION_STRING << "-"
|
||||
<< ANDROID_VERSION_CODE << " (r" << PROGRAM_RELEASE_NUMBER << "), built "
|
||||
|
|
Loading…
Reference in a new issue