Merge branch 'master' of https://github.com/project64/project64
This commit is contained in:
commit
f7b1eb90d2
|
@ -3756,6 +3756,7 @@ Good Name=Mario Story (J)
|
||||||
Internal Name=MARIO STORY
|
Internal Name=MARIO STORY
|
||||||
Status=Compatible
|
Status=Compatible
|
||||||
Plugin Note=[video] errors:menus (see GameFAQ)
|
Plugin Note=[video] errors:menus (see GameFAQ)
|
||||||
|
32bit=No
|
||||||
Clear Frame=1
|
Clear Frame=1
|
||||||
Counter Factor=1
|
Counter Factor=1
|
||||||
Culling=1
|
Culling=1
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
#define _FILEACCESS_H_
|
#define _FILEACCESS_H_
|
||||||
|
|
||||||
#include "NRagePluginV2.h"
|
#include "NRagePluginV2.h"
|
||||||
|
#include "Version.h"
|
||||||
#include <string>
|
#include <string>
|
||||||
using std::string;
|
using std::string;
|
||||||
|
|
||||||
|
@ -63,7 +64,7 @@ unsigned long djbHash(const char *str);
|
||||||
#define STRING_DEF_GBROMFILE _T("GBxRoms")
|
#define STRING_DEF_GBROMFILE _T("GBxRoms")
|
||||||
#define STRING_DEF_GBROMSAVE _T("GBxSaves")
|
#define STRING_DEF_GBROMSAVE _T("GBxSaves")
|
||||||
|
|
||||||
#define STRING_INI_HEADER "# Generated by NRage input plugin V2 version " VERSIONNUMBER "\n"
|
#define STRING_INI_HEADER "# Generated by NRage input plugin V2 version " VER_FILE_VERSION_STR "\n"
|
||||||
// We use these names for loading from INI files and NRage config files
|
// We use these names for loading from INI files and NRage config files
|
||||||
#define STRING_INI_GENERAL "General"
|
#define STRING_INI_GENERAL "General"
|
||||||
#define STRING_INI_CONTROLLER "Controller"
|
#define STRING_INI_CONTROLLER "Controller"
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
#include "PakIO.h"
|
#include "PakIO.h"
|
||||||
#include "Interface.h"
|
#include "Interface.h"
|
||||||
#include "International.h"
|
#include "International.h"
|
||||||
|
#include "Version.h"
|
||||||
|
|
||||||
// Prototypes //
|
// Prototypes //
|
||||||
BOOL CALLBACK ControllerTabProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
|
BOOL CALLBACK ControllerTabProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
|
||||||
|
@ -102,7 +103,7 @@ BOOL CALLBACK MainDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam )
|
||||||
TCHAR tszBuffer[DEFAULT_BUFFER], tszMsg[DEFAULT_BUFFER / 2];
|
TCHAR tszBuffer[DEFAULT_BUFFER], tszMsg[DEFAULT_BUFFER / 2];
|
||||||
|
|
||||||
LoadString( g_hResourceDLL, IDS_VERSTRING, tszBuffer, DEFAULT_BUFFER / 2);
|
LoadString( g_hResourceDLL, IDS_VERSTRING, tszBuffer, DEFAULT_BUFFER / 2);
|
||||||
_stprintf(tszMsg, tszBuffer, VERSIONINFO);
|
_stprintf(tszMsg, tszBuffer, VER_FILE_VERSION_STR);
|
||||||
SetDlgItemText( hDlg, IDC_VERSIONSTRING, tszMsg );
|
SetDlgItemText( hDlg, IDC_VERSIONSTRING, tszMsg );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
#include "PakIO.h"
|
#include "PakIO.h"
|
||||||
#include "DirectInput.h"
|
#include "DirectInput.h"
|
||||||
#include "International.h"
|
#include "International.h"
|
||||||
#include "version.h"
|
#include "Version.h"
|
||||||
|
|
||||||
// ProtoTypes //
|
// ProtoTypes //
|
||||||
bool prepareHeap();
|
bool prepareHeap();
|
||||||
|
@ -77,7 +77,7 @@ BOOL APIENTRY DllMain( HINSTANCE hModule, DWORD ul_reason_for_call, LPVOID lpRe
|
||||||
DisableThreadLibraryCalls( hModule );
|
DisableThreadLibraryCalls( hModule );
|
||||||
if( !prepareHeap())
|
if( !prepareHeap())
|
||||||
return FALSE;
|
return FALSE;
|
||||||
DebugWriteA("*** DLL Attach (" VERSIONNUMBER "-Debugbuild | built on " __DATE__ " at " __TIME__")\n");
|
DebugWriteA("*** DLL Attach (" VER_FILE_VERSION_STR "-Debugbuild | built on " __DATE__ " at " __TIME__")\n");
|
||||||
ZeroMemory( &g_strEmuInfo, sizeof(g_strEmuInfo) );
|
ZeroMemory( &g_strEmuInfo, sizeof(g_strEmuInfo) );
|
||||||
ZeroMemory( g_devList, sizeof(g_devList) );
|
ZeroMemory( g_devList, sizeof(g_devList) );
|
||||||
ZeroMemory( &g_sysMouse, sizeof(g_sysMouse) );
|
ZeroMemory( &g_sysMouse, sizeof(g_sysMouse) );
|
||||||
|
@ -172,9 +172,9 @@ EXPORT void CALL DllAbout ( HWND hParent )
|
||||||
|
|
||||||
LoadString( g_hResourceDLL, IDS_DLG_ABOUT_TITLE, tszTitle, DEFAULT_BUFFER );
|
LoadString( g_hResourceDLL, IDS_DLG_ABOUT_TITLE, tszTitle, DEFAULT_BUFFER );
|
||||||
|
|
||||||
TCHAR szText[DEFAULT_BUFFER * 4] = _T(STRING_PLUGINNAME) _T("\n\n") \
|
TCHAR szText[DEFAULT_BUFFER * 4] = _T(VER_FILE_DESCRIPTION_STR) _T("\n\n") \
|
||||||
_T("Visit my site for support: >>http://go.to/nrage<<\n\n") \
|
_T("Visit my site for support: >>http://go.to/nrage<<\n\n") \
|
||||||
_T("Version ") VERSIONINFO _T(" (") _T(__DATE__) _T(")\n") \
|
_T("Version ") VER_FILE_VERSION_STR _T(" (") _T(__DATE__) _T(")\n") \
|
||||||
_T("Done by N-Rage\n") \
|
_T("Done by N-Rage\n") \
|
||||||
_T("\n") \
|
_T("\n") \
|
||||||
_T(" - - - - -\n") \
|
_T(" - - - - -\n") \
|
||||||
|
|
|
@ -30,8 +30,6 @@
|
||||||
/////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
//General Plugin
|
//General Plugin
|
||||||
|
|
||||||
#define STRING_PLUGINNAME "N-Rage For PJ64 "
|
|
||||||
|
|
||||||
#define TIMER_MESSAGEWINDOW 123
|
#define TIMER_MESSAGEWINDOW 123
|
||||||
|
|
||||||
// maximum number of devices other than SysMouse
|
// maximum number of devices other than SysMouse
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Microsoft Visual C++ generated resource script.
|
// Microsoft Visual C++ generated resource script.
|
||||||
//
|
//
|
||||||
#include "resource.h"
|
#include "resource.h"
|
||||||
|
#include "Version.h"
|
||||||
|
|
||||||
#define APSTUDIO_READONLY_SYMBOLS
|
#define APSTUDIO_READONLY_SYMBOLS
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -523,39 +524,33 @@ END
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 2,3,0,2
|
FILEVERSION VER_FILE_VERSION
|
||||||
PRODUCTVERSION 2,3,0,2
|
PRODUCTVERSION VER_PRODUCT_VERSION
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
FILEFLAGS VER_FILEFLAGS
|
||||||
FILEFLAGS 0x1L
|
FILEOS VER_FILEOS
|
||||||
#else
|
FILETYPE VER_FILETYPE
|
||||||
FILEFLAGS 0x0L
|
FILESUBTYPE 0x0L
|
||||||
#endif
|
|
||||||
FILEOS 0x40004L
|
|
||||||
FILETYPE 0x2L
|
|
||||||
FILESUBTYPE 0x0L
|
|
||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "StringFileInfo"
|
BLOCK "StringFileInfo"
|
||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "000004b0"
|
BLOCK "000004b0"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "Comments", "Release Version"
|
VALUE "FileDescription", VER_FILE_DESCRIPTION_STR "\0"
|
||||||
VALUE "FileDescription", "Zilmar Spec Plugin for N64 Emulators"
|
VALUE "FileVersion", VER_FILE_VERSION_STR "\0"
|
||||||
VALUE "FileVersion", "2.3c"
|
VALUE "InternalName", VER_INTERNAL_NAME_STR "\0"
|
||||||
VALUE "InternalName", "NRage_Input_V2"
|
VALUE "LegalCopyright", VER_COPYRIGHT_STR "\0"
|
||||||
VALUE "LegalCopyright", "Copyright © 2001-2015 N-Rage, compiled under GPL licensing"
|
VALUE "OriginalFilename", VER_ORIGINAL_FILENAME_STR "\0"
|
||||||
VALUE "OriginalFilename", "NRage_Input_V2.dll"
|
VALUE "ProductName", VER_PRODUCTNAME_STR
|
||||||
VALUE "ProductName", "NRage_Input_V2"
|
VALUE "ProductVersion", VER_PRODUCT_VERSION_STR "\0"
|
||||||
VALUE "ProductVersion", "2.3c"
|
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "Translation", 0x0, 1200
|
VALUE "Translation", 0x409, 1200
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// PROFILE
|
// PROFILE
|
||||||
|
|
|
@ -62,6 +62,7 @@
|
||||||
<ClCompile Include="XInputController.cpp" />
|
<ClCompile Include="XInputController.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<ClInclude Include="Version.h" />
|
||||||
<ClInclude Include="XInputController.h" />
|
<ClInclude Include="XInputController.h" />
|
||||||
<ClInclude Include="commonIncludes.h" />
|
<ClInclude Include="commonIncludes.h" />
|
||||||
<ClInclude Include="ControllerSpecs\Controller #1.0.h" />
|
<ClInclude Include="ControllerSpecs\Controller #1.0.h" />
|
||||||
|
|
|
@ -86,6 +86,9 @@
|
||||||
<ClInclude Include="settings.h">
|
<ClInclude Include="settings.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="Version.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="configs\Controller1.cpf">
|
<None Include="configs\Controller1.cpf">
|
||||||
|
|
|
@ -25,7 +25,6 @@
|
||||||
#define _SETTINGS_H_
|
#define _SETTINGS_H_
|
||||||
|
|
||||||
#define DIRECTINPUT_VERSION 0x0800
|
#define DIRECTINPUT_VERSION 0x0800
|
||||||
#define VERSIONNUMBER "2.3c"
|
|
||||||
|
|
||||||
// hacks for GNU C compilers
|
// hacks for GNU C compilers
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
|
|
Loading…
Reference in New Issue