@@ -47,10 +47,6 @@ const DWORD SHARED_MEM_SIZE = 256;
4747#define new DEBUG_NEW
4848#endif
4949
50- #ifdef RELEASE_BUILD
51- #pragma message("Building SVN release build...")
52- #endif /* RELEASE_BUILD */
53-
5450// CFamiTrackerApp
5551
5652BEGIN_MESSAGE_MAP (CFamiTrackerApp, CWinApp)
@@ -210,7 +206,7 @@ BOOL CFamiTrackerApp::InitInstance()
210206 EnableShellOpen ();
211207
212208 // Skip this if in wip/beta mode
213- #if /* !defined(WIP) &&*/ !defined (_DEBUG)
209+ #if !defined(WIP) && !defined(_DEBUG)
214210 // Add shell options
215211 RegisterShellFileTypes (); // // //
216212 static const LPCTSTR FILE_ASSOC_NAME = _T (" 0CC-FamiTracker Module" );
@@ -288,7 +284,6 @@ BOOL CFamiTrackerApp::InitInstance()
288284 RegisterSingleInstance ();
289285
290286#ifndef _DEBUG
291- // WIP
292287 m_pMainWnd->GetMenu ()->GetSubMenu (4 )->RemoveMenu (ID_MODULE_CHANNELS, MF_BYCOMMAND); // // //
293288#endif
294289
@@ -430,7 +425,7 @@ void CFamiTrackerApp::LoadLocalization()
430425 WORD Major, Minor, Build, Revision;
431426
432427 if (GetFileVersion (DLL_NAME, Major, Minor, Revision, Build)) {
433- if (Major != VERSION_MAJ || Minor != VERSION_MIN || Revision != VERSION_REV || Build != VERSION_WIP ) // // //
428+ if (Major != VERSION_API || Minor != VERSION_MAJ || Revision != VERSION_MIN || Build != VERSION_REV ) // // //
434429 return ;
435430
436431 m_hInstResDLL = ::LoadLibrary (DLL_NAME);
0 commit comments