mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
attempt to show different title when in debug mode
This commit is contained in:
parent
2ee7e7a0f2
commit
e7dd853d07
1 changed files with 10 additions and 0 deletions
|
@ -648,8 +648,13 @@ END
|
||||||
|
|
||||||
STRINGTABLE DISCARDABLE
|
STRINGTABLE DISCARDABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
|
#ifdef DEBUG
|
||||||
|
IDS_APP_TITLE "Crossw_dbg"
|
||||||
|
IDC_XWORDS4 "XWORDS4_DBG"
|
||||||
|
#else
|
||||||
IDS_APP_TITLE "Crosswords"
|
IDS_APP_TITLE "Crosswords"
|
||||||
IDC_XWORDS4 "XWORDS4"
|
IDC_XWORDS4 "XWORDS4"
|
||||||
|
#endif
|
||||||
IDS_FILE "File"
|
IDS_FILE "File"
|
||||||
IDS_GAME "Game"
|
IDS_GAME "Game"
|
||||||
IDS_MOVE "Move"
|
IDS_MOVE "Move"
|
||||||
|
@ -658,6 +663,11 @@ END
|
||||||
#endif // English (U.S.) resources
|
#endif // English (U.S.) resources
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
/* This is supposed to keep the OS from running us in "emulation mode", but it
|
||||||
|
isn't working. Changing the versions as reported by objdump does work */
|
||||||
|
/* #ifdef _WIN32_WCE */
|
||||||
|
/* HI_RES_AWARE CEUX {1} */
|
||||||
|
/* #endif */
|
||||||
|
|
||||||
|
|
||||||
#ifndef APSTUDIO_INVOKED
|
#ifndef APSTUDIO_INVOKED
|
||||||
|
|
Loading…
Reference in a new issue