4 Commits

Author SHA1 Message Date
215af6e3db v1.1.10 2023-07-08 23:44:25 +03:00
7aef85851c Fixed subtle core patch bug introduced by previous rework 2023-07-08 23:43:34 +03:00
f7c24f5ab7 v1.1.9 2023-07-08 21:24:17 +03:00
2ebd40b621 Internal rework to avoid a possible edge case 2023-07-08 21:17:28 +03:00
5 changed files with 15 additions and 6 deletions

Binary file not shown.

View File

@ -51,7 +51,7 @@ if fs.exists('src/tp6.c')
# another dirty hack # another dirty hack
copy_tp6c = find_program('copy_tp6c.sh') copy_tp6c = find_program('copy_tp6c.sh')
tp6c = custom_target( tp6c_target = [custom_target(
'copy_tp6c', 'copy_tp6c',
output: 'tp6c.o', output: 'tp6c.o',
input: tp6c_fake_exe.extract_all_objects(recursive: false), input: tp6c_fake_exe.extract_all_objects(recursive: false),
@ -60,10 +60,12 @@ if fs.exists('src/tp6.c')
'@INPUT0@', '@INPUT0@',
'@OUTPUT0@', meson.current_source_dir() / 'blob/tp6c.o' '@OUTPUT0@', meson.current_source_dir() / 'blob/tp6c.o'
] ]
) )]
tp6c_blob = []
else else
message('Using precompiled tp6c blob. Refer to the readme for more details') message('Using precompiled tp6c blob. Refer to the readme for more details')
tp6c = 'blob/tp6c.o' tp6c_target = []
tp6c_blob = [ 'blob/tp6c.o' ]
endif endif
shared_library( shared_library(
@ -71,7 +73,8 @@ shared_library(
sources, sources,
res_header, res_header,
res_object, res_object,
objects: tp6c, tp6c_target,
objects: tp6c_blob,
include_directories: include_dir, include_directories: include_dir,
name_prefix: '' name_prefix: ''
) )

View File

@ -3,3 +3,9 @@
### 1.1.0 ### 1.1.0
- HSR support - HSR support
### 1.1.9
- Fixed a bug which could cause the game to crash in odd scenarios
### 1.1.10
- Fixed a subtle bug introduced in 1.1.9

View File

@ -1,4 +1,4 @@
project('jadeite', 'c', version: '1.1.8') project('jadeite', 'c', version: '1.1.10')
nasm = find_program('nasm') nasm = find_program('nasm')
gen_res = find_program('gen_resources.sh') gen_res = find_program('gen_resources.sh')

View File

@ -1,6 +1,6 @@
{ {
"jadeite": { "jadeite": {
"version": "1.1.8" "version": "1.1.10"
}, },
"games": { "games": {
"hi3rd": { "hi3rd": {