Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3b2d33ad24 | |||
| ba6a054ec3 | |||
| 7693e63619 |
@ -23,6 +23,9 @@
|
|||||||
### 3.0.1
|
### 3.0.1
|
||||||
- Fixed a bug that caused HI3 to crash
|
- Fixed a bug that caused HI3 to crash
|
||||||
|
|
||||||
### branch/master
|
### 3.0.2
|
||||||
- Fixed multiple error messageboxes showing invalid characters
|
- Fixed multiple error messageboxes showing invalid characters
|
||||||
- Added handling for more error conditions
|
- Added handling for more error conditions
|
||||||
|
|
||||||
|
### 3.0.4
|
||||||
|
- Moved LoadLibrary call into core from main
|
||||||
|
|||||||
@ -88,7 +88,7 @@ BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID reserved) {
|
|||||||
&pi
|
&pi
|
||||||
)) {
|
)) {
|
||||||
wchar_t message[1024];
|
wchar_t message[1024];
|
||||||
wsprintfW(message, L"Failed to start game process: %ld", GetLastError());
|
wsprintfW(message, L"Failed to start game process: %ld\nGame executable path: '%ls'", GetLastError(), targetExe);
|
||||||
MessageBoxW(NULL, message, J_MB_TITLE, MB_OK | MB_ICONERROR);
|
MessageBoxW(NULL, message, J_MB_TITLE, MB_OK | MB_ICONERROR);
|
||||||
|
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
project('jadeite', 'c', version: '3.0.4')
|
project('jadeite', 'c', version: '3.0.5')
|
||||||
|
|
||||||
nasm = find_program('nasm')
|
nasm = find_program('nasm')
|
||||||
gen_res = find_program('gen_resources.sh')
|
gen_res = find_program('gen_resources.sh')
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"jadeite": {
|
"jadeite": {
|
||||||
"version": "3.0.4"
|
"version": "3.0.5"
|
||||||
},
|
},
|
||||||
"games": {
|
"games": {
|
||||||
"hi3rd": {
|
"hi3rd": {
|
||||||
|
|||||||
Reference in New Issue
Block a user